-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.47 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.47 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
{
"name": "bubbles-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && npm run build:404",
"build:404": "node -e \"require('fs').copyFileSync('dist/index.html', 'dist/404.html')\"",
"lint": "eslint .",
"preview": "vite preview",
"stage": "npm run build -- --mode staging && vite preview --mode staging",
"stage:dev": "vite --mode staging",
"deploy": "rimraf node_modules/.cache/gh-pages && npm run build && gh-pages -d dist",
"deploy:staging": "rimraf node_modules/.cache/gh-pages && npm run build -- --mode staging && gh-pages -d dist"
},
"dependencies": {
"@supabase/supabase-js": "^2.97.0",
"@turf/turf": "^7.3.4",
"@types/lodash": "^4.17.23",
"clsx": "^2.1.1",
"lodash": "^4.17.23",
"lucide-react": "^0.563.0",
"maplibre-gl": "^5.17.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-map-gl": "^8.1.0",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"gh-pages": "^6.3.0",
"globals": "^16.5.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^7.3.1"
}
}