-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.95 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
{
"name": "recruitment",
"private": true,
"scripts": {
"pre-commit": "lint-staged",
"lint-hook": "eslint -f table --ext .js --ext .jsx app/webpack",
"lint-fix-hook": "eslint -f table --ext .js --ext .jsx --fix app/webpack",
"lint": "npm run lint-hook --silent || true",
"lint-fix": "npm run lint-fix-hook --silent || true",
"lint:folder": "eslint -f table --ext .js --ext .jsx $base_folder",
"lint-fix:folder": "eslint -f table --ext .js --ext .jsx --fix $base_folder"
},
"lint-staged": {
"*.jsx": [
"node_modules/.bin/eslint --fix --config .eslintrc",
"git add"
],
"*.rb": [
"rubocop --auto-correct --force-exclusion",
"git add"
]
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@rails/webpacker": "^4.0.0-pre.3",
"antd": "^3.26.20",
"axios": "^0.18.0",
"babel-plugin-import": "^1.9.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^1.0.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"less-vars-to-js": "^1.3.0",
"lodash": "^4.17.11",
"mini-css-extract-plugin": "^0.4.3",
"postcss": "^7.0.5",
"postcss-cssnext": "^3.1.0",
"prop-types": "^15.6.2",
"rc-queue-anim": "^1.6.6",
"react": "^16.5.2",
"react-cookie": "^3.1.1",
"react-dom": "^16.5.2",
"react-flexbox-grid": "^2.1.2",
"react-hot-loader": "^4.3.11",
"react-loadable": "^5.5.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"terser-webpack-plugin": "^1.1.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^0.14.3",
"style-loader": "^0.23.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.0"
}
}