-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.23 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
70
71
72
73
74
75
{
"name": "plan2adapt-v2-sketch",
"version": "2.6.0",
"private": true,
"dependencies": {
"@craco/craco": "^7.1.0",
"bootstrap": "^4.3.1",
"buffer": "^6.0.3",
"c3": "^0.7.20",
"classnames": "^2.2.6",
"deepdash": "^4.2.12",
"js-yaml": "^3.13.1",
"leaflet": "^1.8.0",
"lethargy": "^1.0.9",
"lodash": "^4.17.21",
"path-browserify": "^1.0.1",
"pcic-react-components": "git+https://git@github.com/pacificclimate/pcic-react-components.git#3.2.0",
"pcic-react-leaflet-components": "git+https://git@github.com/pacificclimate/pcic-react-leaflet-components.git#3.2.0",
"process": "^0.11.10",
"proj4": "^2.7.5",
"proj4leaflet": "^1.0.2",
"prop-types": "^15.6.2",
"react": "^18.2.0",
"react-bootstrap": "^1.6.1",
"react-dom": "^18.2.0",
"react-icons": "^3.5.0",
"react-leaflet": "^4.0.0",
"react-markdown": "^9.0.0",
"react-scripts": "^5.0.1",
"react-spinners": "^0.15.0",
"rehype-raw": "^7.0.0",
"stream-browserify": "^3.0.0",
"url-join": "^4.0.0",
"wkt": "^0.1.1",
"xml-js": "^1.6.9"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"husky": "^9.1.7",
"jest-each": "^28.1.1",
"lint-staged": "^15.3.0",
"prettier": "3.2.2",
"serve": "^13.0.2"
},
"scripts": {
"start": "craco start",
"start-env": "REACT_APP_APP_VERSION=\"$(./generate-commitish.sh)\" craco start",
"build": "REACT_APP_APP_VERSION=$(bash ./generate-commitish.sh) && craco build",
"build-serve": "craco build && serve -s build -l 3004",
"build-update": "cp ./public/external-text/default.yaml ./build/external-text/default.yaml",
"test": "craco test",
"eject": "react-scripts eject",
"reinstall": "rm -rf ./node_modules && npm install",
"prepare": "husky",
"format": "prettier --write .",
"check-format": "prettier --check ."
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(url-join|react-leaflet|@react-leaflet/core))"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}