-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.18 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
58
{
"name": "open-app",
"private": true,
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"gulp": "gulp"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"babel-eslint": "^10.1.0",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-cache": "^1.1.3",
"gulp-clean-css": "^4.3.0",
"gulp-cli": "^2.2.0",
"gulp-eslint": "^6.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-json-editor": "^2.5.4",
"gulp-livereload": "^4.0.2",
"gulp-load-plugins": "^2.0.3",
"gulp-plumber": "^1.2.1",
"gulp-size": "^3.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"gulp-useref": "^4.0.1",
"gulp-zip": "^5.0.1",
"uglify-js": "^3.9.1",
"wiredep": "^4.0.0"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"browser": true
},
"globals": {
"chrome": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 8
},
"rules": {
"eol-last": 0,
"quotes": [
2,
"single"
]
}
}
}