forked from jdx/mean-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "socialapp",
"scripts": {
"start": "node boot.js",
"test": "jshint . && mocha && ./node_modules/karma/bin/karma start --single-run && protractor",
"postinstall": "bower install && gulp build"
},
"dependencies": {
"bcrypt": "^0.8.0",
"body-parser": "^1.9.0",
"bower": "^1.3.12",
"ejs": "^1.0.0",
"express": "^4.9.5",
"gulp": "^3.8.8",
"gulp-concat": "^2.4.1",
"gulp-ng-annotate": "^0.3.3",
"gulp-nodemon": "^1.0.4",
"gulp-sourcemaps": "^1.2.2",
"gulp-stylus": "^1.3.3",
"gulp-uglify": "^1.0.1",
"jsonwebtoken": "^1.1.2",
"jwt-simple": "^0.2.0",
"mongoose": "^3.8.17",
"morgan": "^1.3.2",
"redis": "^0.12.1",
"ws": "^0.4.32"
},
"devDependencies": {
"chai": "^1.9.2",
"chai-as-promised": "^4.1.1",
"karma": "^0.12.24",
"karma-chai": "^0.1.0",
"karma-mocha": "^0.1.9",
"karma-phantomjs-launcher": "^0.1.4",
"karma-sinon-chai": "^0.2.0",
"mocha": "^1.21.4",
"protractor": "^1.3.1",
"supertest": "^0.14.0"
}
}