-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.57 KB
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
{
"name": "things",
"private": true,
"dependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-react": "^7.6.3",
"@rails/webpacker": "https://github.com/rails/webpacker.git",
"aws-sdk": "^2.562.0",
"axios": "^0.19.0",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"d3": "^5.12.0",
"eslint-plugin-react": "^7.16.0",
"jquery": "^3.4.1",
"normalize.css": "^8.0.1",
"popper.js": "^1.16.0",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.1.2",
"postcss-preset-env": "^6.7.0",
"prop-types": "^15.7.2",
"rails-ujs": "^5.2.3",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react_ujs": "^2.6.0",
"reactstrap": "^8.1.1",
"webpack": "^4.41.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"config/webpack/**/*.js": [
"prettier --write",
"eslint",
"git add"
],
"frontend/**/*.js": [
"prettier --write",
"eslint",
"git add"
],
"frontend/**/*.css": [
"prettier --write",
"stylelint --fix",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"stylelint": "^11.1.1",
"stylelint-config-standard": "^19.0.0",
"webpack-dev-server": "^3.9.0"
}
}