-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.39 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
86
87
{
"name": "station-data-portal",
"version": "1.6.1",
"private": true,
"dependencies": {
"@tanstack/react-query": "^5.20.2",
"@tanstack/react-table": "^8.12.0",
"axios": "^0.28.0",
"bootstrap": "^5.1.3",
"chroma-js": "^2.4.2",
"d3-scale": "^4.0.2",
"date-fns": "^3.3.1",
"immer": "^9.0.15",
"js-yaml": "^4.1.0",
"leaflet": "^1.8.0",
"leaflet-draw": "^1.0.4",
"lethargy": "^1.0.9",
"lodash": "^4.17.21",
"memoize-one": "^6.0.0",
"pcic-react-leaflet-components": "git+https://[email protected]/pacificclimate/pcic-react-leaflet-components.git#tile-url-as-prop",
"plotly.js-basic-dist": "^2.34.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-bootstrap": "^2.4.0",
"react-bootstrap-icons": "^1.8.4",
"react-compound-slider": "^3.4.0",
"react-csv": "^2.2.2",
"react-datepicker": "^4.8.0",
"react-dom": "^18.2.0",
"react-leaflet": "4.0.0",
"react-leaflet-draw": "^0.20.1",
"react-plotly.js": "^2.6.0",
"react-range-slider": "^0.2.1",
"react-router-bootstrap": "^0.26.2",
"react-router-dom": "^6.21.3",
"react-scripts": "5.0.1",
"react-select": "^5.3.2",
"react-table": "^7.8.0",
"sass": "^1.70.0",
"url-join": "^5.0.0",
"use-immer": "^0.7.0",
"zustand": "^4.4.7"
},
"overrides": {
"autoprefixer": "10.4.5"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.20.2",
"craco": "^0.0.3",
"husky": "^8.0.3",
"jest-each": "^28.1.1",
"lint-staged": "^15.2.0",
"prettier": "3.2.2",
"react-app-alias": "^2.2.2",
"serve": "^13.0.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"jest": {
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(url-join|react-leaflet|@react-leaflet/core))"
]
},
"scripts": {
"start": "craco start",
"build": "REACT_APP_APP_VERSION=$(bash ./generate-commitish.sh) && craco build",
"test": "craco test --env=jsdom",
"eject": "react-scripts eject",
"reinstall": "rm -rf ./node_modules; npm install --dev",
"prepare": "husky install",
"format": "prettier --write .",
"check-format": "prettier --check ."
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}