-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.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
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
{
"name": "electrofishing",
"version": "2.4.8",
"scripts": {
"build:stage": "export VITE_BUILD=stage && npm run build:sw && vite build",
"build:sw": "esbuild src/ServiceWorker.js --bundle --outfile=public/ServiceWorker.js --define:process.env.VITE_FIREBASE_CONFIG=$(npx dotenv -p VITE_FIREBASE_CONFIG)",
"build": "export VITE_BUILD=prod && npm run build:sw && vite build",
"e2e": "playwright test",
"lint": "eslint .",
"postinstall": "cd functions && npm install",
"preview": "vite preview",
"start:app": "npm run build:sw && vite",
"start:e2e-resources": "concurrently 'firebase emulators:start --only firestore,auth' 'vite'",
"start:e2e": "playwright test --ui",
"start:firebase-emulators": "firebase emulators:start --import emulator_data --export-on-exit --only firestore,functions,auth,ui",
"start": "concurrently 'wait-on http://127.0.0.1:4000 && npm run start:app' 'npm run start:firebase-emulators'",
"storybook": "storybook dev -p 9009",
"test": "npm run lint && vitest"
},
"browserslist": [
"last 2 versions and > 2%"
],
"prettier": {
"printWidth": 120,
"singleQuote": true
},
"dependencies": {
"@tanstack/react-table": "^8.20.6",
"bootstrap": "^3.4.1",
"clsx": "^2.1.1",
"downshift": "^9.0.8",
"esri-leaflet": "^3.0.14",
"firebase": "^11.1.0",
"immer": "^10.1.1",
"leaflet": "^1.9.4",
"leaflet-loading": "^0.1.24",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"papaparse": "^5.4.1",
"proj4": "^2.15.0",
"proj4leaflet": "^1.0.2",
"pubsub-js": "^1.9.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^5.0.0",
"react-leaflet": "^5.0.0",
"react-toastify": "^11.0.2",
"spin.js": "^4.1.2",
"use-immer": "^0.11.0",
"uuid": "^11.0.4"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.3",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.49.1",
"@storybook/addon-actions": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@types/node": "^22.10.5",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"dotenv-cli": "^8.0.0",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-testing-library": "^7.1.1",
"firebase-tools": "^13.29.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"sass": "^1.83.1",
"storybook": "^8.4.7",
"vite": "^6.0.7",
"vitest": "^2.1.8",
"wait-on": "^8.0.1"
}
}