-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1013 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1013 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
{
"name": "fleetflow",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "prisma generate",
"db:push": "rm -f prisma/dev.db prisma/dev.db-journal && prisma migrate diff --from-empty --to-schema-datamodel prisma/schema.prisma --script | sqlite3 prisma/dev.db",
"db:seed": "node prisma/seed.mjs",
"db:setup": "npm run db:generate && npm run db:push && npm run db:seed"
},
"dependencies": {
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.97.0",
"@vercel/analytics": "^1.6.1",
"date-fns": "^4.1.0",
"next": "^15.5.12",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "22.13.10",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"autoprefixer": "10.4.20",
"postcss": "8.5.3",
"tailwindcss": "3.4.17",
"typescript": "5.8.2"
}
}