-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 759 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 759 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
{
"name": "recipes",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
},
"dependencies": {
"@prisma/client": "^4.16.2",
"@types/node": "18.15.5",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"eslint": "8.57",
"next": "^14.2.28",
"qs": "^6.11.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"swr": "^2.2.0",
"typescript": "5.0.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"eslint-config-next": "^14.2.28",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.7",
"prisma": "^4.16.2"
}
}