-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.62 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
60
61
62
63
64
65
{
"name": "gym-tracker",
"version": "0.1.0",
"private": true,
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "prisma generate & prisma migrate deploy && prisma db seed",
"seed": "prisma db seed",
"lint": "next lint",
"start": "next start",
"format": "prettier --write \"./!(.next)/**/*.{js,jsx,ts,tsx,json}\""
},
"overrides": {
"glob": "^10.4.1",
"rimraf": "^5.0.7"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@serwist/next": "^9.0.9",
"@t3-oss/env-nextjs": "^0.2.2",
"@tanstack/react-query": "^4.35.3",
"@trpc/client": "^10.18.0",
"@trpc/next": "^10.38.3",
"@trpc/react-query": "^10.18.0",
"@trpc/server": "^10.18.0",
"@types/bcrypt": "^5.0.0",
"@types/node": "^18.17.18",
"@vercel/speed-insights": "^1.0.11",
"bcrypt": "^5.1.1",
"js-confetti": "^0.12.0",
"next": "^14.2.15",
"next-auth": "^4.24.5",
"prisma": "^5.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"serwist": "^9.0.2",
"superjson": "1.12.2",
"tsx": "^3.12.10",
"typescript": "^5.5",
"zod": "^3.22.3"
},
"devDependencies": {
"@prisma/client": "^5.15.0",
"@types/eslint": "^8.44.2",
"@types/prettier": "^2.7.3",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.49.0",
"eslint-config-next": "^13.5.2",
"postcss": "^8.4.31",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"tailwindcss": "^3.4.0"
},
"ct3aMetadata": {
"initVersion": "7.12.1"
}
}