forked from andrewalexeich/gulp-pug-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·70 lines (70 loc) · 2.44 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
{
"name": "gulp-pug-starter",
"description": "Frontend development with pleasure",
"author": "Andrey Gorokhov",
"repository": {
"type": "git",
"url": "https://github.com/andreyalexeich/gulp-pug-starter.git"
},
"license": "MIT",
"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:style": "stylelint \"src/**/*.scss\" --syntax=scss",
"lint:style --fix": "stylelint \"src/**/*.scss\" --syntax=scss --fix"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"babel-eslint": "~10.0.2",
"babel-loader": "^8.0.5",
"bem-tools-core": "bem-tools/bem-tools-core",
"bem-tools-create": "bem-tools/bem-tools-create",
"browser-sync": "^2.23.6",
"del": "^4.1.1",
"eslint": "~6.0.0",
"gulp": "^4.0.0",
"gulp-autoprefixer": "~6.1.0",
"gulp-clean-css": "~4.2.0",
"gulp-debug": "~4.0.0",
"gulp-favicons": "^2.3.1",
"gulp-group-css-media-queries": "^1.2.2",
"gulp-if": "^2.0.2",
"gulp-imagemin": "~6.0.0",
"gulp-plumber": "^1.2.0",
"gulp-pug": "^4.0.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^1.0.0",
"gulp-sass": "~4.0.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-svg-sprite": "^1.5.0",
"gulp-watch": "^5.0.0",
"gulp-webp": "^4.0.1",
"imagemin-giflossy": "^5.1.10",
"imagemin-jpeg-recompress": "~6.0.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "~8.0.0",
"imagemin-webp": "^5.0.0",
"imagemin-zopfli": "^6.0.0",
"require-dir": "^1.2.0",
"stylelint": "^10.0.1",
"stylelint-order": "^3.0.0",
"stylelint-selector-bem-pattern": "^2.1.0",
"webpack": "~4.35.0",
"webpack-stream": "^5.2.1",
"yargs": "~13.2.4"
},
"dependencies": {
"smart-grid": "^2.1.2"
}
}