-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "basic",
"version": "1.1.0",
"description": "",
"main": "gulpfile.js",
"scripts": {
"build": "gulp build",
"develop": "gulp watch",
"zip": "gulp zip",
"cleanup": "gulp cleanup",
"start": "gulp",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jaime Rodriguez <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.26.3",
"eslint": "^4.18.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"gulp": "~3.9.1",
"gulp-eslint": "^4.0.2",
"gulp-imagemin": "^4.1.0",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.1.0",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-zip": "^4.2.0",
"webpack": "^3.11.0",
"webpack-stream": "^4.0.2"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"del": "^5.0.0"
}
}