-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.62 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
{
"name": "travelback",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "npm run build:worker",
"dev": "next dev",
"prebuild": "npm run check:worker",
"build": "next build",
"build:worker": "node scripts/build-worker.mjs",
"check:worker": "node scripts/build-worker.mjs --check",
"start": "node scripts/serve-static.mjs",
"preview": "npm run start",
"lint": "eslint",
"typecheck": "next typegen && tsc --noEmit",
"test": "vitest run",
"test:e2e": "node scripts/run-dev-e2e.mjs",
"test:e2e:dev": "env -u NO_COLOR playwright test -c playwright.config.ts",
"test:e2e:static:ci": "npm run smoke:static && node scripts/run-static-e2e.mjs",
"test:e2e:static": "npm run build && npm run test:e2e:static:ci",
"smoke:static": "node scripts/smoke-static.mjs",
"postbuild": "node scripts/harden-static-export.mjs"
},
"dependencies": {
"@tmcw/togeojson": "^7.1.2",
"lucide-react": "^1.24.0",
"maplibre-gl": "^5.24.0",
"mediabunny": "^1.50.8",
"next": "^16.2.10",
"react": "19.2.7",
"react-dom": "19.2.7"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "^24.13.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"esbuild": "^0.28.1",
"eslint": "^9.39.5",
"eslint-config-next": "^16.2.10",
"jsdom": "^29.1.1",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"overrides": {
"js-yaml": "4.3.0",
"postcss": "8.5.19",
"typescript-eslint": "8.64.0",
"undici": "7.28.0",
"vite": "8.1.5"
}
}