-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.02 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
99
100
101
{
"name": "mountains-markup",
"author": "Liza Elkina",
"repository": {
"type": "git",
"url": "git+https://github.com/lizaelkina/mountains-markup.git"
},
"homepage": "https://github.com/lizaelkina/mountains-markup#readme",
"bugs": {
"url": "https://github.com/lizaelkina/mountains-markup/issues"
},
"license": "GPL-3.0-only",
"scripts": {
"dev": "gulp",
"build": "gulp prod --production",
"build:views": "gulp views --production",
"build:styles": "gulp styles --production",
"build:scripts": "gulp scripts --production",
"build:images": "gulp images --production",
"build:webp": "gulp webp --production",
"build:sprites": "gulp sprites --production",
"build:fonts": "gulp fonts --production",
"build:favicons": "gulp favicons --production",
"build:gzip": "gulp gzip --production",
"lint:styles": "stylelint \"src/**/*.scss\"",
"lint:styles --fix": "stylelint --fix \"src/**/*.scss\"",
"lint:scripts": "eslint \"src/js/**/*.js\"",
"lint:scripts --fix": "eslint --fix \"src/js/**/*.js\"",
"bem-c": "bem create $* -l src/blocks/components",
"bem-m": "bem create $* -l src/blocks/modules",
"predeploy": "yarn run build",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.0",
"babel-loader": "^8.2.3",
"bem-tools-core": "bem-tools/bem-tools-core",
"bem-tools-create": "bem-tools/bem-tools-create",
"browser-sync": "^2.27.7",
"del": "^6.0.0",
"eslint": "^8.11.0",
"gh-pages": "^5.0.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-debug": "^4.0.0",
"gulp-favicons": "^3.0.0",
"gulp-group-css-media-queries": "^1.2.2",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-newer": "^1.4.0",
"gulp-plumber": "^1.2.1",
"gulp-pug": "^4.0.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-svg-sprite": "^1.5.0",
"gulp-watch": "^5.0.1",
"gulp-webp": "^4.0.1",
"husky": "^7.0.4",
"imagemin-giflossy": "^5.1.10",
"imagemin-jpeg-recompress": "~7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "~9.0.0",
"imagemin-webp": "^6.0.0",
"imagemin-zopfli": "^7.0.0",
"lint-staged": "^12.3.5",
"postcss": "^8.4.38",
"postcss-scss": "^4.0.3",
"require-dir": "^1.2.0",
"sass": "^1.49.9",
"stylelint": "^14.5.3",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"stylelint-selector-bem-pattern": "^2.1.1",
"yargs": "^17.3.1"
},
"dependencies": {
"dev": "^0.1.3",
"webpack": "^5.70.0",
"webpack-stream": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.scss": [
"stylelint --fix --allow-empty-input"
],
"*.js": [
"eslint --fix"
]
},
"packageManager": "[email protected]"
}