-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.49 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.49 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
{
"name": "TaskRunnerGulp2",
"description": "Task runner gulp",
"type": "module",
"keywords": [
"gulp",
"taskrunner"
],
"main": "./src/scripts/index.js",
"scripts": {
"start": "cross-env NODE_ENV=development gulp",
"build": "cross-env NODE_ENV=production gulp build"
},
"author": "Volkov Sergey <itsergey1001@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/ITSserge/TaskRunnerGulp.git"
},
"bugs": {
"url": "https://github.com/ITSserge/TaskRunnerGulp/issues"
},
"homepage": "https://github.com/ITSserge/TaskRunnerGulp#readme",
"browserslist": "> 0.25%, not dead",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"babel-loader": "^9.1.3",
"browser-sync": "^3.0.2",
"chalk": "^5.3.0",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"dotenv": "^16.4.5",
"glob": "^11.0.0",
"gulp": "^5.0.0",
"gulp-autoprefixer": "^9.0.0",
"gulp-changed": "^5.0.2",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^4.3.0",
"gulp-group-css-media-queries": "^1.2.2",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^9.1.0",
"gulp-notify": "^4.0.0",
"gulp-plumber": "^1.2.1",
"gulp-pretty-html": "^2.0.10",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-ssi": "^0.1.5",
"gulp-svg-sprite": "^2.0.3",
"gulp-webp": "^5.0.0",
"sass": "^1.77.8",
"style-loader": "^4.0.0",
"webpack-stream": "^7.0.0"
}
}