-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
48 lines (48 loc) · 1.39 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
{
"name": "AtWork",
"version": "0.0.1",
"description": "An open-source social network for your workplace",
"repository": "https://github.com/matterial/atwork",
"main": "index.js",
"scripts": {
"start": "node index",
"dev": "node index",
"karma": "node node_modules/karma/bin/karma start karma.conf.js",
"mocha": "./node_modules/.bin/istanbul cover --report html node_modules/.bin/_mocha -- ./modules/**/server/tests/**/*.js -R spec -r tools/test/mocha-req.js",
"test": "npm run mocha && npm run karma",
"postinstall": "./node_modules/bower/bin/bower install"
},
"author": "Riten Vagadiya",
"license": "MIT",
"dependencies": {
"async": "^0.9.2",
"aws-sdk": "^2.1.28",
"body-parser": "^1.11.0",
"bower": "^1.3.12",
"ejs": "^2.3.1",
"express": "^4.11.2",
"jsonwebtoken": "^3.2.2",
"lodash": "^3.9.3",
"mongoose": "3.8",
"morgan": "^1.5.1",
"multer": "^0.1.7",
"nodemailer": "^1.3.2",
"socket.io": "^1.3.5"
},
"devDependencies": {
"chai": "^1.10.0",
"expect": "^1.6.0",
"gulp": "^3.8.10",
"gulp-concat": "^2.5.2",
"gulp-minify-css": "^1.1.3",
"gulp-sass": "^1.3.2",
"gulp-uglify": "^1.2.0",
"istanbul": "^0.3.7",
"karma": "^0.12.31",
"karma-coverage": "^0.2.7",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.1.4",
"mocha": "^2.1.0",
"phantomjs": "^1.9.15"
}
}