-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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
{
"name": "gulp-build",
"version": "1.0.0",
"description": "Simple frontend build using Gulp (for quick start and small tasks)",
"main": "index.js",
"scripts": {
"dev": "gulp",
"build": "gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamcoderUA/gulp-build.git"
},
"keywords": [],
"author": "Stanislav Mikhniev",
"license": "ISC",
"bugs": {
"url": "https://github.com/iamcoderUA/gulp-build/issues"
},
"homepage": "https://github.com/iamcoderUA/gulp-build#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"browser-sync": "^2.18.13",
"del": "^3.0.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-autoprefixer": "^4.0.0",
"gulp-cheerio": "^0.6.3",
"gulp-concat": "^2.6.1",
"gulp-csso": "^3.0.0",
"gulp-imagemin": "^3.4.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-svg-sprites": "^4.1.2",
"gulp-svgmin": "^1.2.4",
"gulp-uglify": "^3.0.0",
"node-sass": "^4.8.1",
"nodemon": "^1.17.5",
"webpack": "^4.8.3",
"webpack-stream": "^4.0.3"
},
"dependencies": {
"node-normalize-scss": "^3.0.0"
}
}