This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.61 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
{
"name": "anthropocene-references",
"version": "0.1.0",
"private": true,
"homepage": "http://ewoken.github.io/anthropocene-references",
"dependencies": {
"antd": "^3.10.0",
"prop-types": "^15.6.2",
"query-string": "^6.2.0",
"ramda": "^0.25.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts": "2.0.4",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
"reselect": "^4.0.0"
},
"devDependencies": {
"babel-plugin-import": "^1.9.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"gh-pages": "^2.0.1",
"husky": "^1.1.1",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"react-app-rewired": "^1.6.2"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" .",
"fix": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" --fix .",
"start": "react-app-rewired start",
"build": "node scripts/generateNoScriptPage.js && react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"deploy": "gh-pages -d build"
},
"lint-staged": {
"*.js": [
"eslint --no-ignore"
],
"*.json": [
"prettier --write"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}