-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.63 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "yeho-starter",
"version": "1.0.0",
"description": "Gulp + Webpack boilerplate made for starting all type of project",
"author": "Yoan Malié <[email protected]> (https://yoan-malie.fr)",
"license": "LGPL-3.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --write \"**/*.{js,scss,md,json}\"",
"stylelint": "stylelint \"**/*.scss\" --fix",
"eslint": "eslint \"**/*.js\"",
"phpcsfixer": "./vendor/bin/php-cs-fixer --config=.php_cs.dist fix"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"require-dir": "^1.2.0",
"stylelint": "^13.7.2",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0",
"terser-webpack-plugin": "^4.2.2"
},
"dependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@babel/runtime": "^7.11.2",
"@babel/runtime-corejs3": "^7.11.2",
"autoprefixer": "^10.0.1",
"babel-loader": "^8.1.0",
"browser-sync": "^2.26.12",
"core-js": "^3.6.5",
"cssnano": "^4.1.10",
"del": "^6.0.0",
"fancy-log": "^1.3.3",
"fibers": "^5.0.0",
"gulp": "^4.0.2",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-newer": "^1.4.0",
"gulp-postcss": "^9.0.0",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-stylelint": "^13.0.0",
"postcss": "^8.1.0",
"postcss-combine-media-query": "^1.0.1",
"pump": "^3.0.0",
"sass": "^1.26.11",
"vinyl-paths": "^3.0.1",
"webpack": "^4.44.2",
"webpack-stream": "^6.1.0"
},
"browserslist": [
"> 0.5% in US",
"> 0.25%",
"ios >= 8.1",
"android >= 4.4",
"firefox esr",
"not ie < 11",
"chrome >= 41",
"not OperaMini all"
],
"prettier": {
"semi": false,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.php": [
"./vendor/bin/php-cs-fixer --config=.php_cs.dist fix"
],
"*.{scss,md,json}": [
"prettier --write"
],
"*.scss": [
"stylelint --fix"
],
"*.js": [
"eslint --fix"
]
}
}