-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.85 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
{
"name": "pride-bus",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"start": "concurrently npm:start-python npm:dev",
"start-python": "cd server && poetry run chalice local --port=5000",
"dev": "vite",
"build": "tsc && vite build",
"lint-frontend": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 15",
"lint-backend": "cd server && poetry run flake8 && poetry run black . --check",
"lint": "concurrently npm:lint-frontend npm:lint-backend",
"postinstall": "cd server && poetry install",
"preview": "vite preview"
},
"engines": {
"node": ">=20.10.0",
"npm": ">=10.0.0"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@mapbox/polyline": "^1.2.1",
"@tanstack/react-query": "^5.64.2",
"@types/react-scroll": "^1.8.10",
"leaflet": "^1.9.4",
"leaflet-hotline": "^0.4.0",
"leaflet-hotline-react": "^1.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-leaflet": "^4.2.1",
"react-leaflet-hotline": "^1.5.0",
"react-leaflet-marker": "^2.1.1",
"react-scroll": "^1.9.0"
},
"devDependencies": {
"@types/leaflet": "^1.9.16",
"@types/node": "^20.14.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.18",
"postcss": "^8.5.1",
"prettier": "3.4.2",
"tailwindcss": "^3.4.3",
"typescript": "^5.7.3",
"vite": "^5.2.12"
}
}