-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.29 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
{
"name": "mean.coffee",
"description": "MEAN - A Modern Stack: MongoDB, ExpressJS, AngularJS, NodeJS",
"version": "0.0.1",
"private": true,
"author": "Thibault Laurens",
"repository": {
"type": "git",
"url": "https://github.com/ThibaultLaurens/mean.coffee"
},
"engines": {
"node": "0.10.x",
"npm": "1.4.x"
},
"scripts": {
"start": "coffee server.coffee",
"gulp": "gulp dev --require coffee-script/register",
"gulp-build": "gulp build --require coffee-script/register",
"test": "mocha --compilers coffee:coffee-script/register --reporter nyan",
"postinstall": "bower install"
},
"dependencies": {
"body-parser": "1.0.x",
"coffee-script": "1.8.x",
"compression": "1.0.x",
"connect-mongo": "0.4.x",
"connect-multiparty": "1.0.x",
"cookie-parser": "1.0.x",
"cors": "^2.5.3",
"errorhandler": "1.0.x",
"express": "4.0.x",
"express-session": "1.0.x",
"forever": "0.11.x",
"glob": "^4.2.1",
"helmet": "0.2.x",
"memwatch": "0.2.x",
"method-override": "1.0.x",
"mongoose": "3.8.x",
"nodetime": "0.8.x",
"passport": "0.2.x",
"passport-http": "0.2.x",
"passport-local": "^1.0.0",
"password-hash": "1.2.x",
"serve-favicon": "2.0.x",
"serve-static": "1.0.x",
"winston": "0.7.x"
},
"devDependencies": {
"bower": "1.3.x",
"chai": "1.9.x",
"del": "^0.1.3",
"gulp": "3.8.x",
"gulp-angular-htmlify": "^1.2.0",
"gulp-clean": "^0.3.1",
"gulp-coffee": "1.4.x",
"gulp-concat": "2.2.x",
"gulp-flatten": "0.0.x",
"gulp-if": "^1.2.5",
"gulp-imagemin": "0.3.x",
"gulp-livereload": "^2.1.1",
"gulp-minify-css": "0.3.x",
"gulp-minify-html": "^0.1.6",
"gulp-ng-annotate": "^0.3.5",
"gulp-notify": "~1.3.1",
"gulp-preprocess": "^1.2.0",
"gulp-rename": "^1.2.0",
"gulp-rimraf": "^0.1.0",
"gulp-sass": "^1.1.0",
"gulp-size": "0.3.x",
"gulp-uglify": "0.2.x",
"gulp-util": "2.2.x",
"gulp-watch": "0.6.x",
"imagemin-pngcrush": "^4.0.0",
"karma": "^0.12.28",
"karma-chai": "^0.1.0",
"karma-coffee-preprocessor": "^0.2.1",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.1.4",
"mocha": "^2.0.1",
"run-sequence": "^1.0.2",
"shelljs": "^0.3.0",
"supertest": "0.11.x"
}
}