-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.53 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
{
"name": "static-boilerplate",
"version": "1.0.0",
"description": "My markup template for a quick start to build static projects",
"browserslist": [
"last 3 versions",
"> 1%",
"not dead",
"not ie <= 11",
"Firefox ESR"
],
"scripts": {
"lint:css": "stylelint \"./src/sass/**/*.scss\" --formatter verbose || echo \"lint faild for some file(s).\"",
"format:css": "prettier --write \"src/sass/**/*.scss\" && stylelint \"src/sass/**/*.scss\" --fix --formatter verbose || echo \"lint faild for some file(s).\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/dench1k/static-boilerplate.git"
},
"keywords": [
"boilerplate",
"markup",
"gulp"
],
"author": "dench1k <denmoskvitin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dench1k/static-boilerplate/issues"
},
"homepage": "https://github.com/dench1k/static-boilerplate#readme",
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"autoprefixer": "^9.8.6",
"browser-sync": "^2.27.10",
"cssnano": "^4.1.10",
"del": "^5.1.0",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"gradient-string": "^1.2.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-file-include": "^2.2.2",
"gulp-imagemin": "^7.1.0",
"gulp-order": "^1.2.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-rev": "^9.0.0",
"gulp-rev-delete-original": "^0.2.3",
"gulp-rev-rewrite": "^3.0.3",
"gulp-sass": "^4.1.0",
"gulp-shorthand": "^1.1.0",
"gulp-svgstore": "^7.0.1",
"gulp-terser": "^1.4.0",
"gulp-webp": "^4.0.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"node-sass": "^4.14.1",
"postcss-flexbugs-fixes": "^4.2.1",
"prettier": "^2.1.2",
"stylelint": "^13.7.1",
"stylelint-config-airbnb": "0.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/sass/**/*.scss": [
"prettier --write",
"stylelint --fix"
],
"src/js/*.js": [
"prettier --write",
"eslint --fix"
]
}
}