-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "pollution-control-hub",
"private": true,
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src scripts",
"check:shadowing": "node scripts/check-module-shadowing.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"type-check": "tsc",
"assets:convert-webp": "node scripts/convert-assets-to-webp.mjs",
"ws-server": "node server/heatmap-ws-server.js",
"api-server": "node server/api-server.js"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@tailwindcss/postcss": "^4.3.2",
"@tailwindcss/vite": "^4.3.2",
"express": "^4.21.2",
"helmet": "^8.0.0",
"html2canvas": "^1.4.1",
"i18next": "^26.3.6",
"i18next-browser-languagedetector": "^8.2.1",
"jspdf": "^4.2.1",
"leaflet": "^1.9.4",
"leaflet.heat": "^0.2.0",
"lru-cache": "^11.5.2",
"lucide-react": "^1.24.0",
"pg": "^8.11.3",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-datepicker": "^7.6.0",
"react-dom": "^18.3.1",
"react-i18next": "^17.0.11",
"react-icons": "^5.7.0",
"react-leaflet": "^4.2.1",
"react-popper": "^2.3.0",
"recharts": "^2.12.7",
"tailwindcss": "^4.3.2"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@axe-core/react": "^4.12.1",
"@eslint/js": "^9.39.5",
"@fullhuman/postcss-purgecss": "^6.0.0",
"@playwright/test": "^1.61.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/leaflet": "^1.9.21",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/pg": "^8.11.2",
"@types/react-leaflet": "^2.8.3",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.1.9",
"ask-sdk-core": "^2.14.0",
"eslint": "^9.39.5",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.11.0",
"jsdom": "^29.1.1",
"msw": "^2.15.0",
"sharp": "^0.33.5",
"ts-morph": "^28.0.0",
"typescript": "^7.0.2",
"vite": "^5.4.8",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^2.1.9",
"ws": "^8.18.0"
}
}