-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.51 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.51 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "06-challenge-bookwise",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"dev-inspect": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.0",
"@hookform/resolvers": "^3.1.1",
"@prisma/client": "^4.16.1",
"@radix-ui/react-dialog": "^1.0.4",
"@stitches/react": "^1.2.8",
"@tanstack/react-query": "^4.29.12",
"@tanstack/react-query-devtools": "^4.29.15",
"@types/node": "20.2.5",
"@types/react": "18.2.8",
"@types/react-dom": "18.2.4",
"axios": "^1.4.0",
"dayjs": "^1.11.8",
"eslint-config-next": "13.4.4",
"next": "13.4.4",
"next-auth": "^4.22.1",
"next-seo": "^6.0.0",
"phosphor-react": "^1.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.0",
"typescript": "5.1.3",
"uuid": "^9.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@rocketseat/eslint-config": "^1.2.0",
"@tanstack/eslint-plugin-query": "^4.29.9",
"@types/uuid": "^9.0.2",
"eslint": "^8.42.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"next-react-svg": "^1.2.0",
"prisma": "^4.15.0"
}
}