-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 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": "before-you-go",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"db:migrate": "tsx scripts/migrations/run.ts",
"db:migrate:create": "tsx scripts/migrations/create.ts",
"db:migrate:rollback": "tsx scripts/migrations/rollback.ts",
"db:seed": "tsx scripts/seed/index.ts",
"db:seed:ghana": "tsx scripts/seed/ghana.ts",
"calculate-scores": "tsx scripts/calculate-scores.ts"
},
"dependencies": {
"@supabase/supabase-js": "^2.45.4",
"next": "^16.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^3.6.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/pg": "^8.16.0",
"@types/react": "^19.0.6",
"@types/react-dom": "^19.0.2",
"autoprefixer": "^10.4.20",
"dotenv": "^17.2.3",
"eslint": "^9.17.0",
"eslint-config-next": "^16.1.1",
"pg": "^8.16.3",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
}
}