This repository was archived by the owner on Oct 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 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
{
"name": "workout-programming",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && prisma migrate deploy && next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"postinstall": "prisma generate"
},
"engines": {
"node": "22.x"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@clerk/nextjs": "^6.28.1",
"@clerk/themes": "^2.4.23",
"@commitlint/types": "^19.8.1",
"@eslint/compat": "^1.3.0",
"@heroicons/react": "^2.2.0",
"@prisma/client": "6.10.1",
"@stylistic/eslint-plugin": "^5.1.0",
"@vercel/blob": "^1.1.1",
"cookie": "^1.0.2",
"next": "^15.4.7",
"prisma": "^6.10.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-player": "^2.16.0",
"typescript-eslint": "^8.34.1",
"zod": "^3.25.67"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^24.6.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"eslint": "^9.29.0",
"eslint-config-next": "^15.3.4",
"husky": "^9.1.7",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.13",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}