-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "book-wise",
"author": "pedro_dias",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@next/font": "13.4.5",
"@phosphor-icons/react": "^2.0.15",
"@prisma/client": "^4.16.2",
"@radix-ui/react-dialog": "^1.0.5",
"@stitches/react": "^1.2.8",
"@tanstack/react-query": "^5.28.9",
"@types/node": "20.3.1",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"axios": "^1.6.8",
"date-fns": "^3.6.0",
"eslint": "8.42.0",
"eslint-config-next": "13.4.5",
"next": "^13.0.0",
"next-auth": "^4.22.1",
"phosphor-react": "^1.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.1.3"
},
"devDependencies": {
"@rocketseat/eslint-config": "^2.1.0",
"@types/uuid": "^9.0.8",
"eslint-plugin-simple-import-sort": "^12.0.0",
"prisma": "^4.16.2",
"ts-node": "^10.9.2",
"uuid": "^9.0.1"
}
}