-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "gulp-sass-pug-boilerplate",
"version": "0.0.1",
"description": "Gulp boilerplate for rapid development",
"main": "gulpfile.js",
"author": "Sergey Gavrilov (SVGVR) <[email protected]>",
"scripts": {
"start": "gulp",
"build": "gulp build",
"build:clean": "gulp build-clean"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"autoprefixer": "^9.4.6",
"browser-sync": "^2.9.3",
"del": "^3.0.0",
"gulp": "^3.9.0",
"gulp-babel": "^8.0.0",
"gulp-changed": "^3.2.0",
"gulp-concat": "^2.6.1",
"gulp-data": "^1.2.0",
"gulp-html2pug": "^1.2.1",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^5.0.3",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-pug": "^4.0.1",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1",
"run-sequence": "^2.2.1"
},
"keywords": [
"gulp",
"gulp-babel",
"pug",
"sass",
"browsersync"
],
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1"
}
}