-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.83 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.83 KB
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
102
103
104
105
106
107
{
"name": "gulp-task-runner",
"version": "1.0.3-beta",
"description": "Сборщик проектов для вёрстки Webpack + Gulp + Babel",
"main": "gulpfile.babel.js",
"keywords": [
"babel",
"webpack",
"gulp",
"node",
"project builder"
],
"author": {
"name": "NИ",
"email": "galaxyrobotix@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ko2doo/gulp-task-runner.git"
},
"scripts": {
"dev": "gulp",
"build": "gulp production --production",
"build:html": "gulp html --production",
"build:styles": "gulp styles --production",
"build:scripts": "gulp scripts --production",
"build:images": "gulp images --production",
"build:fonts": "gulp fonts --production",
"build:webp": "gulp webp --production",
"lint:styles": "stylelint \"source/**/*.scss\"",
"lint:styles --fix": "stylelint --fix \"source/**/*.scss\"",
"lint:scripts": "eslint \"source/js/**/*.js\"",
"lint:scripts --fix": "eslint --fix \"source/js/**/*.js\""
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@babel/register": "^7.18.9",
"babel-loader": "^8.2.5",
"browser-sync": "^2.27.10",
"concat": "^1.0.3",
"del": "^6.1.1",
"eslint": "^8.26.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-babel": "^8.0.0",
"gulp-beautify": "^3.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-debug": "^4.0.0",
"gulp-file-include": "^2.3.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-notify": "^4.0.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-watch": "^5.0.1",
"gulp-webp": "^4.0.1",
"imagemin-giflossy": "^5.1.10",
"imagemin-jpeg-recompress": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-webp": "^6.0.0",
"imagemin-zopfli": "^7.0.0",
"lint-staged": "^13.0.3",
"node-notifier": "^10.0.1",
"postcss": "^8.4.18",
"postcss-scss": "^4.0.5",
"require-dir": "^1.2.0",
"sass": "^1.55.0",
"stylelint": "^14.14.0",
"stylelint-config-standard-scss": "^6.0.0",
"stylelint-order": "^5.0.0",
"webpack": "^5.74.0",
"webpack-stream": "^7.0.0",
"yargs": "^17.6.0"
},
"engines": {
"node": ">= 14.21.1",
"npm": ">= 6.14.17"
},
"os": [
"darwin",
"linux",
"win64",
"!win32"
],
"lint-staged": {
"*.scss": [
"stylelint --fix --allow-empty-input"
],
"*.js": [
"eslint --fix"
]
},
"dependencies": {
"normalize.css": "^8.0.1",
"rfs": "^9.0.6"
}
}