-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
75 lines (75 loc) · 1.89 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
67
68
69
70
71
72
73
74
75
{
"private": true,
"engines": {
"node": "10.13.0",
"npm": "6.4.1"
},
"scripts": {
"build:dev": "gulp build",
"build": "NODE_ENV=production gulp build",
"clean": "gulp clean",
"start": "gulp",
"lint": "npm run lint:js && npm run lint:scss",
"lint:fix": "npm run lint:fix-js && npm run lint:fix-scss",
"lint:js": "eslint ./src/js/**/*",
"lint:fix-js": "npm run lint:js -- --fix",
"lint:scss": "stylelint ./src/scss/**/*",
"lint:fix-scss": "npm run lint:scss -- --fix",
"format": "prettier --write **/*"
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
],
"*.scss": [
"stylelint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@upstatement/puppy": "^0.6.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@upstatement/eslint-config": "^0.4.2",
"@upstatement/prettier-config": "^0.3.0",
"autoprefixer": "^9.7.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"browser-sync": "^2.9.9",
"bs-fullscreen-message": "^1.1.0",
"css-loader": "^3.4.2",
"del": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"gulp": "^4.0.2",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-load-plugins": "^2.0.2",
"gulp-twig": "^1.1.1",
"husky": "^4.0.4",
"lint-staged": "^9.4.2",
"mini-css-extract-plugin": "^0.9.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"sass": "^1.24.3",
"sass-loader": "^8.0.2",
"stylelint": "^12.0.1",
"stylelint-config-sass-guidelines": "^6.1.0",
"webpack": "^4.41.5",
"webpack-dev-middleware": "^3.7.2",
"webpack-modernizr-loader": "^5.0.0"
}
}