-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.17 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "kitchenapp",
"author": "James Sherry <[email protected]>",
"repository": {
"url": "[email protected]:jmsherry/kitchenapp",
"type": "git"
},
"private": "true",
"license": "UNLICENSED",
"version": "0.1.0",
"description": "MEAN stack demo of a kitchen inventory app",
"devDependencies": {
"apidoc": "^0.13.1",
"async": "^1.5.0",
"bower": "^1.4.1",
"browser-sync": "^2.5.3",
"bson": "^0.4.16",
"codeclimate-test-reporter": "^0.1.0",
"del": "^2.0.2",
"errorhandler": "^1.3.3",
"event-stream": "^3.3.1",
"gulp": "^3.9.0",
"gulp-angular-filesort": "^1.1.1",
"gulp-angular-templatecache": "^1.7.0",
"gulp-apidoc": "^0.2.0",
"gulp-apidoc-to-markdown": "^0.2.2",
"gulp-autoprefixer": "^3.0.0",
"gulp-bump": "^1.0.0",
"gulp-concat": "^2.4.3",
"gulp-css-url-rebase": "^0.2.0",
"gulp-git": "^1.0.0",
"gulp-imagemin": "^2.3.0",
"gulp-inject": "^3.0.0",
"gulp-jsbeautify": "^0.1.1",
"gulp-jscs": "^3.0.1",
"gulp-jscs-stylish": "^1.0.2",
"gulp-jshint": "^1.9.1",
"gulp-manifest": "^0.1.0",
"gulp-minify-css": "^1.0.0",
"gulp-mocha": "^2.0.0",
"gulp-natural-sort": "^0.1.0",
"gulp-ng-annotate": "^1.1.0",
"gulp-nodemon": "^2.0.2",
"gulp-open": "^1.0.0",
"gulp-plumber": "^1.0.0",
"gulp-protractor": "^1.0.0",
"gulp-rev-all": "^0.8.20",
"gulp-sass": "^2.0.4",
"gulp-sourcemaps": "^1.5.2",
"gulp-sprite-generator": "^0.2.3",
"gulp-uglify": "^1.1.0",
"gulp-usemin": "^0.3.11",
"gulp-util": "^3.0.2",
"gulp-wait": "^0.0.2",
"gulp-watch": "^4.1.0",
"imagemin-pngquant": "^4.1.2",
"jshint-stylish": "^2.0.0",
"karma": "^0.13.9",
"karma-chrome-launcher": "^0.2.0",
"karma-coverage": "^0.5.0",
"karma-firefox-launcher": "^0.1.4",
"karma-jasmine": "^0.3.5",
"karma-ng-html2js-preprocessor": "^0.2.0",
"karma-nyan-reporter": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.0",
"main-bower-files": "^2.9.0",
"merge-stream": "^1.0.0",
"mongodb-extended-json": "^1.5.2",
"node-mongo-seeds": "^2.2.7",
"node-sass": "^3.3.3",
"run-sequence": "^1.0.2",
"sassdoc": "^2.1.8",
"sassdoc-extras": "^2.3.0",
"should": "^7.0.0",
"streamqueue": "^1.0.0",
"supertest": "^1.0.0"
},
"dependencies": {
"body-parser": "^1.12.0",
"chalk": "^1.0.0",
"composable-middleware": "^0.3.0",
"compression": "^1.4.0",
"connect-mongo": "^0.8.0",
"cookie-parser": "^1.3.3",
"express": "^4.12.2",
"express-jwt": "^3.0.0",
"express-session": "^1.10.2",
"json3": "^3.3.2",
"jsonwebtoken": "^5.0.0",
"lodash": "^3.3.1",
"method-override": "^2.3.1",
"moment": "^2.10.6",
"moment-timezone": "^0.4.0",
"mongoose": "^4.0.1",
"mongoose-validators": "^0.1.0",
"morgan": "^1.5.1",
"newrelic": "^1.22.0",
"passport": "^0.3.0",
"passport-local": "^1.0.0",
"ripe": "^0.2.0",
"sendgrid": "^1.9.2",
"socket.io": "^1.3.5"
},
"engines": {
"node": "4.2.1",
"npm": "2.11.3"
},
"scripts": {
"start": "node ./server/server.js",
"postinstall": "bower install && gulp build",
"test": "gulp test"
}
}