-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "nextjs-postgresql-template",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"dev": "next dev --webpack",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"seed": "npx tsx prisma/seed.ts",
"studio": "prisma studio",
"db:push": "prisma db push",
"db:seed": "npx tsx src/db/seed.ts",
"db:reset": "prisma db push --force-reset && npx tsx src/db/seed.ts"
},
"dependencies": {
"@prisma/adapter-pg": "^7.9.1",
"@prisma/client": "^7.9.1",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/nodemailer": "^8.0.1",
"bcryptjs": "^3.0.3",
"dotenv": "17.3.1",
"jsonwebtoken": "^9.0.3",
"next": "16.2.6",
"nodemailer": "^9.0.5",
"pg": "8.20.0",
"prisma": "^7.9.1",
"react": "19.2.6",
"react-dom": "19.2.6",
"tsx": "^4.23.12"
},
"devDependencies": {
"@tailwindcss/postcss": "4.1.17",
"@types/node": "22.19.15",
"@types/pg": "8.18.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"eslint": "9.39.4",
"eslint-config-next": "16.2.6",
"postcss": "8.5.8",
"tailwindcss": "4.1.17",
"typescript": "5.9.3"
}
}