forked from hjzheng/gulp-AngularJS1.x-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.47 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
{
"name": "gulp-AngularJS1.x-seed",
"version": "1.0.0",
"dependencies": {
"angular": ">=1.x.x",
"angular-resource": ">=1.x.x",
"angular-ui-router": "^0.2.15",
"lodash": "^4.13.1"
},
"devDependencies": {
"anyproxy": "^3.10.2",
"body-parser": "^1.15.2",
"browser-sync": "^2.13.0",
"concurrently": "^2.1.0",
"del": ">=0.1.3",
"eslint": "^3.0.0",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^1.3.0",
"express": "^4.14.0",
"gulp": "^3.9.1",
"gulp-angular-templatecache": ">=1.7.0",
"gulp-filter": "^4.0.0",
"gulp-if": "^2.0.1",
"gulp-inject": "^4.1.0",
"gulp-load-plugins": "^1.2.4",
"gulp-minify-css": ">=0.3.10",
"gulp-minify-html": ">=0.1.6",
"gulp-ng-annotate": "^2.0.0",
"gulp-order": "^1.1.1",
"gulp-replace": ">=0.4.0",
"gulp-rev": "^7.1.0",
"gulp-rev-replace": "^0.4.3",
"gulp-uglify": ">=1.0.1",
"gulp-useref": "^3.1.0",
"gulp-watch": "^4.3.8",
"http-proxy-middleware": "^0.17.0",
"husky": "^0.11.4",
"lodash": "^4.13.1",
"nodemon": "^1.9.2",
"yargs": "^5.0.0"
},
"scripts": {
"test": "eslint src",
"dev": "concurrently \"gulp dev --proxy-target local\" \"nodemon mock-server.js\"",
"dev-test": "gulp dev --proxy-target test",
"dev-product": "gulp dev --proxy-target product",
"build": "gulp build",
"precommit": "npm test",
"prepush": "npm test",
"anyProxy-server": "nodemon anyProxy-server.js"
}
}