-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
93 lines (93 loc) · 2.58 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
89
90
91
92
93
{
"name": "converter-demo-app",
"version": "0.0.1",
"private": false,
"homepage": "https://valhalla.openstreetmap.de",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@geoman-io/leaflet-geoman-free": "^2.13.1",
"@mui/material": "^5.10.14",
"@turf/turf": "^6.5.0",
"axios": "^1.1.3",
"date-fns": "^2.29.3",
"jquery-ui-bundle": "^1.12.1-migrate",
"json-format": "^1.0.1",
"leaflet": "^1.9.3",
"leaflet-extra-markers": "^1.2.1",
"leaflet.heightgraph": "^1.4.0",
"prop-types": "^15.8.1",
"ramda": "^0.28.0",
"react": "^17.0.0",
"react-beautiful-dnd": "^13.1.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^17.0.0",
"react-modern-drawer": "^1.1.2",
"react-redux": "^8.0.4",
"react-scripts": "^5.0.1",
"react-toastify": "^9.1.2",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.3",
"tachyons": "^4.12.0",
"throttle-debounce": "^5.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:all": "yarn test:other && yarn test:js",
"predeploy": "react-scripts build",
"deploy": "gh-pages -d build",
"eject": "react-scripts eject",
"fix:other": "yarn prettier --write",
"fix:js": "yarn test:js --fix",
"fix": "yarn fix:js && yarn fix:other",
"prettier": "prettier \"**/*.{json,md,scss,yaml,yml}\"",
"test:other": "yarn prettier --list-different",
"test:js": "eslint --debug --ignore-path .gitignore --ignore-path .prettierignore \"**/*.{js,jsx}\""
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
],
"*.{json,md,scss,yaml,yml}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.13.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"redux-devtools-extension": "^2.13.8"
}
}