-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.29 KB
/
package.json
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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "book-wise",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@phosphor-icons/react": "^2.1.5",
"@prisma/client": "^5.14.0",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@stitches/react": "^1.2.8",
"@tanstack/react-query": "^5.35.1",
"axios": "^1.6.8",
"dayjs": "^1.11.11",
"googleapis": "^136.0.0",
"next": "^14.2.3",
"next-auth": "^4.24.7",
"next-seo": "^6.5.0",
"nookies": "^2.5.2",
"react": "^18.3.1",
"react-dom": "^18",
"react-hook-form": "^7.51.4",
"react-toastify": "^10.0.5",
"swiper": "^11.1.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@rocketseat/eslint-config": "^2.2.2",
"@types/node": "^20.12.10",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^9.0.8",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"prisma": "^5.14.0",
"ts-node": "^10.9.2",
"tsx": "^4.9.3",
"typescript": "^5.4.5"
}
}