-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "react_purple_admin",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "4.1.1",
"chroma-js": "^1.3.7",
"idx": "^2.4.0",
"mdi": "^2.2.43",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-loadable": "^5.4.0",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"reactstrap": "^6.1.0",
"styled-components": "^3.3.3"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"precommit": "lint-staged",
"prettier": "prettier --write --single-quote true --trailing-comma all --print-width 80",
"prettier:all": "prettier --write --single-quote true --trailing-comma all --print-width 80 --write 'src/**/*.js' 'src/**/*.jsx'"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"circular-dependency-plugin": "^4.4.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"flow-bin": "^0.74.0",
"lint-staged": "^7.2.0",
"prettier": "^1.13.5",
"react-app-rewire-scss": "^1.0.2",
"react-app-rewire-styled-components": "^3.0.2",
"react-app-rewired": "^1.5.2"
},
"lint-staged": {
"*.{js,jsx}": [
"yarn prettier",
"eslint --fix",
"git add"
]
}
}