forked from htmlacademy-adaptive/2389503-cat-energy-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.85 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
{
"name": "cat-energy-2",
"version": "2.0.7",
"private": true,
"description": "Личный проект «Кэт энерджи» от HTML Academy",
"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 . --ignore-path .gitignore --ignore-pattern vendor/",
"optimize": "npm-run-all -p optimize:**",
"optimize:raster": "gulp optimizeRaster",
"optimize:vector": "gulp optimizeVector"
},
"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": "3.0.1",
"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": "3.0.0",
"gulp-svgmin": "4.1.0",
"linthtml-config-htmlacademy": "1.0.20",
"npm-run-all": "4.1.5",
"postcss": "8.4.38",
"postcss-lightningcss": "1.0.0",
"postcss-url": "10.1.3",
"sass": "1.74.1",
"stylelint": "16.3.1",
"stylelint-config-htmlacademy": "4.2.0",
"w3c-html-validator": "1.7.0"
}
}