-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
84 lines (84 loc) · 2.31 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
{
"name": "311-data",
"version": "0.1.0",
"private": false,
"engines": {
"node": "18.x"
},
"type": "module",
"homepage": "https://edwinjue.github.io/311-data-v2-gh-pages",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -b gh-pages -d dist",
"start": "vite",
"setup": "npm install && npm run check-env",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint \"./**/*.js*\"",
"lint:fix": "eslint --fix \"./**/*.js*\"",
"test": "jest --passWithNoTests",
"check-env": "node ./utils/checkEnv"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@duckdb/duckdb-wasm": "^1.27.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mapbox/mapbox-gl-geocoder": "^5.0.1",
"@mui/icons-material": "^5.14.15",
"@mui/lab": "^5.0.0-alpha.150",
"@mui/material": "^5.14.15",
"@mui/styles": "^5.14.15",
"@mui/system": "^5.15.14",
"@redux-devtools/extension": "^3.2.5",
"@turf/turf": "^6.5.0",
"apache-arrow": "^13.0.0",
"axios": "^1.5.1",
"chart.js": "^4.4.0",
"classnames": "^2.3.2",
"clsx": "^2.0.0",
"core-js": "^3.33.1",
"dataframe-js": "^1.4.4",
"dotenv": "^16.3.1",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"lodash.debounce": "^4.0.8",
"mapbox-gl": "^2.15.0",
"mixpanel-browser": "^2.47.0",
"moment": "^2.29.4",
"papaparse": "^5.4.1",
"prop-types": "^15.8.1",
"proptypes": "^1.1.0",
"query-string": "^8.1.0",
"react": "^17.0.2",
"react-day-picker": "^7.4.8",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-markdown": "^8.0.7",
"react-redux": "^8.1.3",
"react-router-dom": "^6.17.0",
"react-toastify": "^9.1.3",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.2.3",
"regenerator-runtime": "^0.14.0",
"web-worker": "^1.2.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.52.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^6.0.0",
"husky": "^8.0.3",
"vite": "^5.4.2"
}
}