-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
55
56
57
58
59
{
"name": "inventory",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"postinstall": "prisma generate",
"backup": "tsx prisma/backup.ts",
"restore": "tsx prisma/restore.ts",
"start": "next start",
"typecheck": "tsc --noEmit --incremental false",
"lint": "next lint"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@iconify/icons-mdi": "^1.2.48",
"@t3-oss/env-nextjs": "^0.10.1",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-query-devtools": "4.36.1",
"@trpc/client": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"@types/bcrypt": "^5.0.2",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vorlefan/prisma-backup": "^0.3.5",
"bcrypt": "^5.1.1",
"cookies-next": "^4.3.0",
"dayjs": "^1.11.13",
"eslint": "^9.13.0",
"eslint-config-next": "^15.0.2",
"framer-motion": "^11.11.11",
"jose": "^5.9.6",
"next": "^15.0.2",
"next-pwa": "^5.6.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"superjson": "^2.2.1",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@iconify/react": "^4.1.1",
"@prisma/client": "^5.21.1",
"@types/node": "^20.12.12",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.14",
"postcss": "^8.4.47",
"prisma": "^5.21.1",
"tailwindcss": "^3.4.14",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}