-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 3.1 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "bikehopper-ui",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18"
},
"type": "module",
"dependencies": {
"@formatjs/intl-listformat": "^7.1.7",
"@headlessui/react": "^2.2.0",
"@nivo/line": "^0.88.0",
"@placemarkio/geo-viewport": "^1.0.0",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-radio-group": "^1.1.2",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-toggle-group": "^1.0.4",
"@turf/bbox": "^7.1.0",
"@turf/bezier-spline": "^7.0.0",
"@turf/boolean-point-in-polygon": "^7.0.0",
"@turf/buffer": "^7.0.0",
"@turf/convex": "^7.0.0",
"@turf/distance": "^7.0.0",
"@turf/helpers": "^7.0.0",
"@turf/length": "^7.0.0",
"@turf/line-slice-along": "^7.0.0",
"@turf/meta": "^7.0.0",
"@turf/transform-rotate": "^7.0.0",
"bowser": "^2.11.0",
"classnames": "^2.3.1",
"color": "^4.2.1",
"gpx2fit": "^0.0.5",
"history": "^5.3.0",
"iconoir": "^7.6.0",
"immer": "^9.0.12",
"lodash": "^4.17.21",
"luxon": "^3.2.1",
"maplibre-gl": "^1.15.2",
"parse-coords": "^1.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^7.0.1",
"react-map-gl": "^7.0.6",
"react-redux": "^8.0.5",
"react-spinners": "^0.15.0",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"reselect": "^5.1.1",
"zod": "^3.23.8",
"zod-geojson": "^0.0.3"
},
"scripts": {
"start": "vite",
"start:docker": "docker compose up",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint --max-warnings 0 src/**/*.{js,jsx,ts,tsx} && npx tsc",
"extract": "formatjs extract 'src/**/*.{ts,tsx,js,jsx}' --ignore 'src/**/*.d.ts' --out-file lang/en.json --id-interpolation-pattern '[sha512:contenthash:base64:6]'",
"compile": "formatjs compile",
"prepare": "husky"
},
"babel": {
"presets": [
"react-app"
]
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/js": "^9.15.0",
"@formatjs/cli": "^6.2.9",
"@tailwindcss/typography": "^0.5.9",
"@types/color": "^4.2.0",
"@types/lodash": "^4.17.4",
"@types/luxon": "^3.4.2",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"babel-plugin-formatjs": "^10.3.35",
"csv": "^6.2.5",
"eslint": "^9.15.0",
"eslint-plugin-formatjs": "^5.2.5",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.6",
"globals": "^15.12.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"tailwindcss": "^3.3.2",
"typescript": "^5.5.4",
"vite": "^5.2.9",
"vite-plugin-eslint2": "^5.0.2",
"vite-plugin-svgr": "^4.2.0"
},
"overrides": {
"eslint-plugin-react-hooks": {
"eslint": "$eslint"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}