-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.47 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.47 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
53
54
55
56
57
58
59
60
61
62
{
"name": "next-my-profile",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"format": "prettier --write ."
},
"dependencies": {
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"@supabase/supabase-js": "^2.89.0",
"@types/pg": "^8.16.0",
"next": "^16.1.0",
"next-auth": "^4.24.13",
"pg": "^8.16.3",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "4.1.18",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv-cli": "^11.0.0",
"eslint": "9.39.2",
"eslint-config-next": "16.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"npm-check-updates": "^19.2.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"prisma": "^7.2.0",
"supabase": "^2.67.3",
"tailwindcss": "4.1.18",
"tsx": "^4.21.0",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"*.{json,yml,css,html}": [
"prettier --write"
]
},
"engines": {
"node": ">=20.11.0",
"npm": ">=10.0.0"
},
"packageManager": "npm@11.7.0",
"prisma": {
"seed": "tsx src/scripts/seed-database.ts"
}
}