-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.19 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.19 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "stig-site",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:seed": "prisma db seed",
"db:studio": "prisma studio",
"postinstall": "prisma generate --no-engine",
"vercel-build": "prisma generate && next build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"sync:live": "ts-node scripts/sync-live-data.ts",
"sync:to-supabase": "ts-node scripts/sync-to-supabase.ts",
"seed:from-snapshot": "ts-node scripts/seed-from-snapshot.ts"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@next/third-parties": "^15.4.6",
"@prisma/client": "^6.14.0",
"@supabase/supabase-js": "^2.56.0",
"@vercel/analytics": "^1.4.1",
"@vercel/blob": "^1.1.1",
"bcryptjs": "^3.0.2",
"next": "14.2.31",
"next-auth": "^4.24.11",
"prisma": "^6.14.0",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"@tailwindcss/forms": "^0.5.10",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^14.3.1",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.31",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"playwright": "^1.55.0",
"postcss": "^8",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"engines": {
"node": ">=20"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}