-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.01 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
88
{
"name": "mermaid-dashboard",
"version": "0.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/data-mermaid/mermaid-dash.git"
},
"keywords": [
"skeleton"
],
"author": "Wildlife Conservation Society <[email protected]>",
"bugs": {
"url": "https://github.com/data-mermaid/mermaid-dash/issues"
},
"engines": {
"node": ">=16",
"npm": "~6.8.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint src/**/*.js"
},
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.2.1",
"@material-ui/lab": "^4.0.0-alpha.41",
"@material-ui/pickers": "^3.3.10",
"@turf/turf": "^5.1.6",
"autosuggest-highlight": "^3.1.1",
"axios": "^0.21.2",
"date-fns": "^2.28.0",
"immer": "^9.0.6",
"leaflet": "1.9.3",
"leaflet-minimap": "^3.6.1",
"leaflet.markercluster": "1.5.3",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-content-loader": "^4.2.2",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1",
"react-scripts": "^5.0.1",
"react-select": "^3.0.4",
"styled-components": "^4.2.0",
"victory": "^32.3.7"
},
"devDependencies": {
"@sparkgeo/eslint-config-react": "^0.9.0",
"babel-plugin-macros": "^2.6.1",
"husky": "^2.3.0",
"lint-staged": "^13.1.0",
"prettier": "^1.17.1",
"react-test-renderer": "^16.8.6"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}