forked from mgediya/scss-with-gulp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "gulp-with-scss",
"version": "1.0.0",
"description": " with Gulp 4",
"main": "gulpfile.js",
"dependencies": {
"gulp-sourcemaps": "^3.0.0",
"node-sass": "^6.0.1",
"postcss": "^8.4.4",
"sass": "^1.44.0",
"sass-migrator": "^1.5.3",
"yarn": "^1.22.17"
},
"devDependencies": {
"autoprefixer": "^10.4.0",
"browser-sync": "^2.27.7",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-imagemin": "^8.0.0",
"gulp-postcss": "^9.0.1",
"gulp-purgecss": "^4.1.3",
"gulp-replace": "^1.1.3",
"gulp-sass": "^5.0.0",
"gulp-terser": "^2.1.0",
"gulp-webp": "^4.0.1",
"log-symbols": "^5.1.0"
},
"scripts": {
"dev": "sass-migrator division **/*.scss && gulp",
"build": "gulp prod",
"prod": "gulp prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mgediya/scss-with-gulp.git"
},
"keywords": [
"gulp",
"gulp4"
],
"author": "Admin",
"license": "ISC",
"bugs": {
"url": "https://github.com/mgediya/scss-with-gulp/issues"
},
"homepage": "https://github.com/mgediya/scss-with-gulp#readme"
}