-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.31 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
{
"name": "axis",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.13.0 <23 || >=24"
},
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"seed:exercises": "npx tsx --env-file=.env.local scripts/seed-exercises.ts"
},
"dependencies": {
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.45.4",
"@types/leaflet": "^1.9.21",
"fuse.js": "^7.0.0",
"idb": "^8.0.1",
"leaflet": "^1.9.4",
"next": "^16.2.2",
"next-pwa": "^5.6.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-leaflet": "^5.0.0",
"recharts": "^2.13.3",
"strava-v3": "^2.1.4",
"swr": "^2.4.1",
"web-push": "^3.6.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/web-push": "^3.6.4",
"@vitest/coverage-v8": "^4.1.5",
"autoprefixer": "^10.4.20",
"eslint": "^9",
"eslint-config-next": "^16.2.2",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5",
"vitest": "^4.1.5"
}
}