-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.72 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
53
54
55
56
57
58
59
60
{
"name": "plot",
"version": "0.20.0",
"private": true,
"scripts": {
"dev": "next dev -p 3088",
"build": "next build --no-lint",
"start": "next start -p ${PORT:-3088}",
"lint": "eslint",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"db:init": "node scripts/init-db.js",
"db:migrate-pois": "npx tsx scripts/migrate-pois.ts",
"docker:build": "docker build -t plot .",
"docker:run": "docker run -p 3088:3000 -v $(pwd)/data:/app/data --env-file .env.local plot"
},
"dependencies": {
"@mapbox/mapbox-gl-geocoder": "^5.1.2",
"axios": "^1.13.2",
"better-sqlite3": "^11.0.0",
"drizzle-orm": "^0.45.1",
"framer-motion": "^12.26.2",
"html2canvas": "^1.4.1",
"mapbox-gl": "^3.18.0",
"next": "^15.5.9",
"next-auth": "^5.0.0-beta.30",
"next-intl": "^4.7.0",
"next-pwa": "^5.6.0",
"pptxgenjs": "^4.0.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"swr": "^2.3.8",
"zod": "^4.3.5"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.8",
"@types/mapbox-gl": "^3.4.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.18",
"drizzle-kit": "^0.31.8",
"eslint": "^9",
"eslint-config-next": "16.1.2",
"happy-dom": "^20.3.1",
"jsdom": "^27.4.0",
"msw": "^2.12.7",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.0.17"
}
}