This repository has been archived by the owner on May 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
81 lines (81 loc) · 2.19 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
{
"name": "react-redux-leaflet-turf-dbscan",
"version": "0.0.1",
"private": false,
"homepage": "https://gis-ops.github.io/dbscan-clustering/",
"dependencies": {
"@turf/turf": "^5.1.6",
"axios": "^0.18.0",
"leaflet": "^1.4.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"react-scripts": "^3.0.1",
"react-semantic-toasts": "^0.6.1",
"react-semantic-ui-range": "^0.6.2",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.85.0",
"tachyons": "^4.11.1"
},
"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": "5.6.0",
"eslint-config-prettier": "4.2.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"gh-pages": "2.0.1",
"husky": "2.4.1",
"lint-staged": "8.2.1",
"prettier": "1.17.1",
"redux-devtools-extension": "^2.13.8"
}
}