-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1004 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1004 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
35
36
37
38
39
40
41
42
43
{
"name": "book-wise",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.14.0",
"@radix-ui/react-dialog": "^1.0.5",
"@stitches/react": "^1.2.8",
"@tanstack/react-query": "^5.32.0",
"axios": "^1.6.8",
"next": "14.1.3",
"next-auth": "^4.24.7",
"next-seo": "^6.5.0",
"phosphor-react": "^1.4.1",
"react": "^18",
"react-dom": "^18",
"react-loader-spinner": "^6.1.6",
"uuid": "^9.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^9.0.8",
"eslint": "^8",
"eslint-config-next": "14.1.3",
"prisma": "^5.14.0",
"ts-node": "^10.9.2",
"tsx": "^4.10.4",
"typescript": "^5"
}
}