-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "bookwise",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@phosphor-icons/react": "^2.0.15",
"@prisma/client": "^5.7.0",
"@radix-ui/react-dialog": "^1.0.5",
"@stitches/react": "^1.2.8",
"@tanstack/react-query": "^5.14.2",
"axios": "^1.6.2",
"next": "14.0.3",
"next-auth": "^4.24.5",
"react": "^18",
"react-dom": "^18",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@rocketseat/eslint-config": "^2.1.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^9.0.7",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"prisma": "^5.7.0",
"ts-node": "^10.9.2",
"typescript": "^5",
"uuid": "^9.0.1"
}
}