-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.16 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.16 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
61
62
63
64
65
66
67
68
69
{
"name": "UrbanAnalyst",
"version": "0.2.2",
"private": true,
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"dev": "next dev",
"build:wasm": "wasm-pack build wasm --release --target web --out-dir ../pkg && cp ./pkg/*.wasm ./public/pkg/",
"build": "next build",
"start": "next start",
"lint": "eslint . --no-error-on-unmatched-pattern",
"docs": "typedoc --entryPointStrategy expand src/",
"docs-open": "xdg-open docs/index.html &",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"prepare": "husky"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^5.16.6",
"@mui/material": "^5.15.20",
"@mui/material-nextjs": "^7.3.7",
"@types/reactour": "^1.18.5",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"d3": "^7.8.5",
"deck.gl": "^8.9.30",
"mapbox-gl": "^3.1.2",
"next": "^16.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-map-gl": "^7.1.7",
"react-select": "^5.8.0",
"reactour": "^1.19.4",
"sharp": "^0.34.5",
"wasm": "file:pkg"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/d3": "^7.4.3",
"@types/node": "^25.5.2",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/browser": "^4.0.17",
"@vitest/coverage-v8": "^4.0.17",
"@vitest/ui": "^4.0.17",
"autoprefixer": "^10.4.27",
"eslint": "^8",
"eslint-config-next": "^14.1.0",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^16.4.0",
"postcss": "^8.5.9",
"typescript": "^6.0.2",
"vitest": "^4.0.17",
"wasm-pack": "^0.14.0"
}
}