-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"dependencies": {
"@rails/webpacker": "^3.2.2",
"bootstrap-sass": "^3.3.7",
"bootstrap-select": "^1.12.4",
"buffer": "^5.1.0",
"clipboard": "^2.0.0",
"ethereumjs-util": "^5.1.4",
"gsap": "^1.20.4",
"jquery": "^3.3.1",
"lodash": "^4.17.5",
"popper.js": "^1.12.9",
"rails-ujs": "^5.1.5",
"stylelint": "^8.4.0",
"turbolinks": "^5.1.1"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-config-prettier": "^2.6.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.3.1",
"lint-staged": "^4.2.3",
"pre-commit": "^1.2.2",
"prettier": "^1.7.3",
"webpack-dev-server": "^2.11.1"
},
"scripts": {
"lint-staged": "$(yarn bin)/lint-staged"
},
"lint-staged": {
"config/webpack/**/*.js": [
"prettier --write",
"eslint",
"git add"
],
"frontend/**/*.js": [
"prettier --write",
"eslint",
"git add"
]
},
"pre-commit": [
"lint-staged"
]
}