-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 989 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 989 Bytes
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
{
"name": "sportify-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"postinstall": "prisma generate",
"server": "cd server && npm run dev",
"db:seed": "node prisma/seed.mjs"
},
"prisma": {
"seed": "node prisma/seed.mjs"
},
"dependencies": {
"@clerk/nextjs": "^6.37.4",
"@prisma/adapter-pg": "^7.4.0",
"@prisma/client": "^7.4.0",
"axios": "^1.13.5",
"next": "16.1.6",
"pg": "^8.18.0",
"prisma": "^7.4.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"recharts": "^3.7.0",
"svix": "^1.85.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"babel-plugin-react-compiler": "1.0.0",
"dotenv": "^17.3.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"tailwindcss": "^4"
}
}