-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.85 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.85 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "3rww-rainfall-viz",
"version": "1.0.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mapbox/mapbox-gl-geocoder": "^5.0.0",
"@reduxjs/toolkit": "^2.0.0",
"axios": "^1.0.0",
"bootstrap": "^5.3.0",
"bootswatch": "^5.3.0",
"chroma-js": "^3.0.0",
"dayjs": "^1.11.19",
"file-saver": "^2.0.0",
"lodash-es": "^4.17.21",
"mapbox-gl": "^3.0.0",
"papaparse": "^5.0.0",
"prop-types": "^15.8.0",
"react": "^19.0.0",
"react-bootstrap": "^2.0.0",
"react-datepicker": "^7.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.0.0",
"react-redux": "^9.0.0",
"react-select": "^5.0.0",
"recharts": "^2.15.1",
"remark-gfm": "^4.0.0"
},
"scripts": {
"start": "vite --host --port 3000",
"dev": "vite --host --port 3000",
"build": "vite build",
"build:analyze": "vite build --sourcemap && node scripts/analyze-bundle.mjs",
"preview": "vite preview --host --port 3000",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "npx playwright test",
"test:e2e:headed": "npx playwright test --headed --project=chromium",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"homepage": "https://3rww.github.io/rainfall",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version"
]
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@vitejs/plugin-react": "^5.0.0",
"gh-pages": "^6.0.0",
"jsdom": "^26.0.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=20 <21",
"npm": ">=10"
}
}