-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 784 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 784 Bytes
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
{
"name": "hello-next",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "MIT",
"author": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"prisma:deploy": "prisma migrate dev",
"netlify-build": "npm run prisma:deploy && npm run build",
"vercel-build": "npm run prisma:deploy && npm run build"
},
"dependencies": {
"@prisma/client": "4.7.1",
"next": "13.0.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "8.0.4"
},
"devDependencies": {
"@types/node": "18.11.12",
"@types/react": "18.0.26",
"prisma": "4.7.1",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}