forked from htmlacademy/drink2go-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.96 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
{
"name": "htmlacademy-gulp-template",
"version": "2.0.6",
"private": true,
"type": "module",
"engines": {
"node": "^18.18 || ^20.9"
},
"browserslist": [
"last 2 versions",
"not dead",
"not op_mini all",
"not and_uc > 0",
"not < 0.2%"
],
"scripts": {
"start": "gulp runDev",
"build": "gulp buildProd",
"preview": "npm run build && browser-sync start -s build/ --cors --no-notify --no-ui",
"lint": "npm-run-all -pc lint:**",
"lint:spaces": "ec --exclude vendor/*",
"lint:markup": "cd source && html-validator --quiet",
"lint:html": "linthtml source/**/*.html --config .linthtmlrc",
"lint:bem": "gulp lintBem --silent",
"lint:styles": "stylelint \"source/styles/**/*.scss\"",
"lint:scripts": "eslint",
"optimize": "npm-run-all -p optimize:**",
"optimize:raster": "gulp optimizeRaster",
"optimize:vector": "gulp optimizeVector",
"test-pp": "node run-test.js",
"test-menu": "backstop test --config=\"test-config/backstop-test-menu.config.js\"",
"test-swiper": "backstop test --config=\"test-config/backstop-test-swiper.config.js\"",
"test-05": "backstop test --config=\"test-config/backstop-test-05.config.json\"",
"test-08": "backstop test --config=\"test-config/backstop-test-08.config.json\"",
"test-07": "backstop test --config=\"test-config/backstop-test-07.config.json\"",
"html-04": "backstop test --config=\"test-config/backstop-html-04.config.js\"",
"test-ff": "backstop test --config=\"test-config/backstop-test-ff.config.js\"",
"test-03": "backstop test --config=\"test-config/backstop-test-03.config.js\"",
"test-logo": "backstop test --config=\"test-config/backstop-test-logo.config.js\"",
"test-04": "backstop test --config=\"test-config/backstop-test-04.config.js\"",
"html-03": "backstop test --config=\"test-config/backstop-html-03.config.js\"",
"test-06": "backstop test --config=\"test-config/backstop-test-06.config.js\"",
"img-01": "backstop test --config=\"test-config/backstop-img-01.config.js\"",
"test-headers": "html-validate source/index.html"
},
"devDependencies": {
"@htmlacademy/editorconfig-cli": "3.0.0",
"@linthtml/linthtml": "0.9.6",
"browser-sync": "3.0.2",
"browserslist-to-esbuild": "2.1.1",
"eslint": "8.57.0",
"eslint-config-htmlacademy": "10.0.1",
"gulp": "4.0.2",
"gulp-esbuild": "0.12.0",
"gulp-html-bemlinter": "4.0.0",
"gulp-htmlmin": "5.0.1",
"gulp-plumber": "1.2.1",
"gulp-postcss": "10.0.0",
"gulp-sass": "5.1.0",
"gulp-sharp-responsive": "0.4.1",
"gulp-stacksvg": "4.0.0",
"gulp-svgmin": "4.1.0",
"htmlacademy-backstopjs": "6.6.1",
"html-validate": "^8.5.0",
"linthtml-config-htmlacademy": "1.0.25",
"npm-run-all": "4.1.5",
"postcss": "8.4.38",
"postcss-lightningcss": "1.0.0",
"postcss-url": "10.1.3",
"sass": "1.77.2",
"stylelint": "16.6.1",
"stylelint-config-htmlacademy": "4.2.3",
"w3c-html-validator": "1.8.1"
}
}