-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 KB
/
package.json
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
{
"name": "hello-next",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "Apache-2.0",
"author": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"vercel-build": "npm run prisma:migrate && npm run prisma:seed && npm run prisma:proxy && npm run build",
"netlify-build": "npm run prisma:migrate && npm run prisma:seed && npm run prisma:proxy && npm run build",
"prisma:migrate": "DATABASE_URL=\"$MIGRATE_DATABASE_URL\" prisma migrate deploy",
"prisma:seed": "DATABASE_URL=\"$MIGRATE_DATABASE_URL\" prisma db seed",
"prisma:proxy": "prisma generate --data-proxy"
},
"dependencies": {
"@prisma/client": "4.6.1",
"next": "13.1.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"autoprefixer": "10.4.13",
"postcss": "8.4.18",
"prisma": "4.6.1",
"tailwindcss": "3.2.3",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}