-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.77 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "gulp-template",
"version": "0.0.0",
"description": "Project template for gulp.js",
"main": "gulpfile.js",
"scripts": {
"prepublish": "bower install",
"start": "gulp",
"build": "gulp build"
},
"keywords": [
"gulp",
"template"
],
"author": "",
"dependencies": {
"coffee-script": "~1.7.1",
"lodash": "~2.4.1",
"socket.io-client": "~1.0.6",
"moment": "~2.7.0",
"bluebird": "~2.2.2"
},
"devDependencies": {
"gulp-rename": "~1.2.0",
"gulp-uglify": "~0.1.0",
"gulp-angular-templatecache": "~1.1.3",
"gulp-util": "~2.2.9",
"event-stream": "~3.1.5",
"gulp-stylus": "1.0.2",
"gulp-jade": "~0.6.0",
"gulp-livereload": "~2.1.0",
"bower": "~1.3.5",
"gulp-plumber": "~0.6.3",
"gulp-autoprefixer": "0.0.7",
"browserify": "~4.1.11",
"gulp-streamify": "0.0.5",
"vinyl-source-stream": "~0.1.1",
"gulp": "~3.8.1",
"watchify": "~0.10.2",
"ecstatic": "~0.5.3",
"gulp-minify-css": "~0.3.5",
"browserify-shim": "~3.6.0",
"envify": "~2.0.1"
},
"browserify-shim": {
"restangular": {
"depends": [
"lodash:_"
]
},
"angular-moment": {
"depends": [
"moment:moment"
]
}
},
"browser": {
"restangular": "./bower_components/restangular/dist/restangular.js",
"angular": "./bower_components/angular/angular.js",
"angular-route": "./bower_components/angular-route/angular-route.js",
"angular-socket-io": "./bower_components/angular-socket-io/socket.js",
"angular-http-auth": "./bower_components/angular-http-auth/src/http-auth-interceptor.js",
"angular-moment": "./bower_components/angular-moment/angular-moment.js"
},
"browserify": {
"transform": [
"browserify-shim",
"envify"
]
}
}