forked from manuelsaezcarmona/combuilder
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.61 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.61 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
{
"name": "community_search",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"dev:clean": "node scripts/clean-vite-cache.js && vite --host 0.0.0.0",
"dev:local": "VITE_STRICT_PORT=true vite --host 127.0.0.1 --port 4173",
"dev:local:clean": "node scripts/clean-vite-cache.js && VITE_STRICT_PORT=true vite --host 127.0.0.1 --port 4173",
"build": "npm run validate-data && vite build",
"changelog": "node scripts/generate-changelog.js",
"prepare": "node scripts/setup-git-hooks.js",
"lint": "eslint .",
"preview": "vite preview",
"validate-data": "node scripts/validate-community-data.js",
"validate-data:staged": "node scripts/validate-community-data.js --strict-changed --baseline-ref HEAD",
"check-urls": "node scripts/check-urls.js",
"check-urls:changed": "node scripts/check-urls.js --changed-only --baseline-ref HEAD",
"check-urls:strict": "node scripts/check-urls.js --strict",
"process-to-communities-to-geojson": "node scripts/process-to-communities-to-geojson.js",
"find-duplicates": "node scripts/find-duplicates.js",
"find-stale-add-community-branches": "node scripts/find-stale-add-community-branches.js",
"scrape-community-data": "node scripts/scrape-community-data.js",
"apply-suggestions": "node scripts/apply-suggestions.js",
"migrate-add-lang": "node scripts/migrate-add-lang.js",
"migrate-enum-keys": "node scripts/migrate-enum-keys.js",
"apply-url-mapping": "node scripts/apply-url-mapping.js",
"simulate-community-owner-assignment": "node scripts/simulate-community-owner-assignment.js",
"archive-broken-urls": "node scripts/archive-broken-urls.js",
"build-preview": "vite build --mode localdev && npx http-server . -p 8080 -o dist/",
"test-geojson": "npx http-server . -p 8080 -o public/viewer",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@arcgis/core": "^4.32.10",
"@arcgis/map-components": "^4.32.14",
"i18next": "^25.10.10",
"i18next-browser-languagedetector": "^8.2.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-i18next": "^16.6.6",
"zustand": "5.0.1"
},
"devDependencies": {
"@eslint/js": "9.13.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react": "4.3.3",
"eslint": "9.13.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-react-refresh": "0.4.14",
"globals": "15.11.0",
"playwright": "^1.58.2",
"sharp": "^0.34.1",
"vite": "5.4.10",
"vitest": "^4.1.1",
"yaml": "^2.8.1"
}
}