-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.61 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
{
"name": "htmlacademy-gulp-template",
"version": "1.0.0",
"private": true,
"devDependencies": {
"@htmlacademy/editorconfig-cli": "1.0.0",
"autoprefixer": "10.4.13",
"browser-sync": "2.27.10",
"del": "7.0.0",
"gulp": "4.0.2",
"gulp-gh-pages": "^0.5.4",
"gulp-html-bemlinter": "2.1.2",
"gulp-if": "3.0.0",
"gulp-less": "5.0.0",
"gulp-libsquoosh": "1.1.2",
"gulp-plumber": "1.2.1",
"gulp-postcss": "9.0.1",
"gulp-stacksvg": "1.0.6",
"gulp-svgmin": "4.1.0",
"gulp-terser": "2.1.0",
"gulp-w3c-html-validator": "5.1.3",
"postcss": "8.4.19",
"postcss-csso": "6.0.1",
"postcss-less": "6.0.0",
"postcss-url": "10.1.3",
"stylelint": "14.15.0",
"stylelint-config-htmlacademy": "1.1.2"
},
"scripts": {
"editorconfig": "editorconfig-cli",
"stylelint": "stylelint \"source/less/**/*.less\" --custom-syntax postcss-less",
"w3c": "gulp validateMarkup --silent",
"bemlinter": "gulp lintBem --silent",
"lint": "npm run editorconfig && npm run stylelint && npm run w3c && npm run bemlinter",
"start": "gulp runDev",
"build": "gulp buildProd",
"preview": "gulp buildProd && gulp startServer",
"deploy": "gh-pages -d build"
},
"browserslist": [
"last 2 versions",
"not dead",
"not op_mini all",
"not < 0.25%"
],
"editorconfig-cli": [
"*.json",
"*.js",
"source/*.html",
"source/js/**/*.js",
"source/img/**/*.svg",
"source/less/**/*.less"
],
"engines": {
"node": ">=16.13.0"
},
"type": "module",
"dependencies": {
"gh-pages": "^5.0.0",
"swiper": "^9.0.5"
}
}