forked from FixMyBerlin/atlas-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.28 KB
/
package.json
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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "atlas-app",
"version": "0.1.0",
"author": "FixMyCity <[email protected]>",
"license": "AGPL-3.0",
"private": true,
"type": "module",
"scripts": {
"start": "vite",
"dev": "npm run start",
"build": "vite build",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"test": "vitest watch",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"check": "npm run type-check && npm run lint && npm run format && vitest run",
"updateStyles": "npx vite-node ./scripts/MapboxStyles/process.ts && npm run lint -- --fix && prettier \"src/components/MapInterface/mapData/topicsMapData/mapboxStyles/mapbox-layer-styles-by-group.json\" --write && github",
"updateDatasets": "node ./datasets/process.cjs && node ./datasets/upload.cjs && node ./datasets/typesAndObject.cjs && prettier \"./datasets\" --write && prettier \"./src/components/MapInterface/mapData/sourcesMapData/datasets\" --write",
"release": "gh pr create --base main --head develop --title \"Release $(date '+%Y-%m-%d')\" --body \"\"",
"prepare": "husky install"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.317.0",
"@headlessui/react": "^1.7.11",
"@mapbox/mapbox-gl-draw": "^1.4.1",
"@popperjs/core": "^2.11.6",
"@sentry/react": "^7.38.0",
"@tanstack/react-location": "^3.7.4",
"@tanstack/react-query": "^4.24.6",
"@turf/turf": "^6.5.0",
"@types/mapbox__mapbox-gl-draw": "^1.3.3",
"axios": "^1.3.3",
"clsx": "^1.2.1",
"immer": "^9.0.19",
"jsurl2": "^2.1.0",
"maplibre-gl": "^2.4.0",
"osm-auth": "^2.0.1",
"pmtiles": "^2.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.43.5",
"react-intl": "^6.2.8",
"react-map-gl": "^7.0.21",
"react-popper": "^2.3.0",
"react-remark": "^2.1.0",
"tiny-invariant": "^1.3.1",
"zipson": "^0.2.12",
"zustand": "^4.3.3"
},
"overrides": {
"@tanstack/react-location-devtools": {
"@tanstack/react-location": "^3.7.4"
}
},
"devDependencies": {
"@heroicons/react": "^2.0.15",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"@tanstack/react-location-devtools": "^3.4.4",
"@types/jsurl2": "^2.1.1",
"@types/node": "^18.13.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-helmet": "^6.1.6",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/ui": "^0.28.5",
"autoprefixer": "^10.4.13",
"chalk": "^5.2.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5",
"vite": "^4.1.2",
"vite-plugin-svgr": "^2.4.0",
"vitest": "^0.28.5"
}
}