-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 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
{
"name": "delphi-analytics",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev --port 3000",
"build": "prisma generate && next build",
"start": "next start --port 3000",
"start:prod": "node scripts/volume-scheduler.js & next start --port 3000",
"postinstall": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate deploy",
"indexer": "tsx lib/indexer/run.ts",
"indexer:backfill": "tsx lib/indexer/backfill.ts"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"framer-motion": "^11.15.0",
"gsap": "^3.14.2",
"next": "^15.5.15",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.15.0",
"tailwind-merge": "^2.6.0",
"viem": "^2.21.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20.9.0"
}
}