-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 733 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 733 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
{
"name": "runtracker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"db:import": "node scripts/import-runs.mjs",
"db:migrate": "node scripts/apply-migrations.mjs",
"start": "next start",
"lint": "eslint ."
},
"dependencies": {
"@neondatabase/auth": "^0.2.0-beta.1",
"@neondatabase/neon-js": "^0.2.0-beta.1",
"@netlify/neon": "0.1.2",
"next": "16.2.1",
"pg": "^8.20.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-router-dom": "^7.13.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"eslint": "9.39.4",
"eslint-config-next": "16.2.1",
"postcss": "^8",
"tailwindcss": "^3.4.1"
}
}