-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 822 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 822 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": "next-prisma-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "PORT=3002 next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@heroicons/react": "^2.0.12",
"@prisma/client": "^4.5.0",
"next": "latest",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.7",
"@types/node": "^18.11.7",
"@types/react": "^18.0.24",
"autoprefixer": "^10.4.13",
"eslint": "^8.26.0",
"eslint-config-next": "^13.0.0",
"postcss": "^8.4.18",
"prisma": "^4.5.0",
"tailwindcss": "^3.2.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"prisma": {
"seed": "ts-node -O {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}