-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.62 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
65
66
{
"name": "template",
"private": true,
"dependencies": {
"@rails/webpacker": "5.4.0",
"normalize.css": "^8.0.1",
"ssri": "^8.0.1",
"yarn": "^1.22.4"
},
"scripts": {
"lint-staged": "$(yarn bin)/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"
]
},
"pre-commit": [
"lint-staged"
],
"devDependencies": {
"@arkweid/lefthook": "^0.7.1",
"autoprefixer": "^10.3.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"cssnano": "^5.0.7",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"html-loader": "^2.1.2",
"lint-staged": "^11.1.2",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^14.0.2",
"postcss-inline-svg": "^5.0.0",
"postcss-loader": "^6.1.1",
"postcss-nested": "^5.0.6",
"pre-commit": "^1.2.2",
"prettier": "^2.0.5",
"stylelint": "^13.3.3",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-prettier": "^1.1.2",
"sugarss": "^4.0.1",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"webpack-dev-server": "^3.11.3"
}
}