-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.15 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": "munverse",
"version": "0.1.0",
"description": "MUN messaging application",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "nodemon app.js",
"start:prod": "node app.js",
"test": "./node_modules/.bin/mocha --recursive --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/VITCMUN/munverse.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/VITCMUN/munverse/issues"
},
"homepage": "https://github.com/VITCMUN/munverse#readme",
"dependencies": {
"async": "^2.6.2",
"body-parser": "^1.18.3",
"connect-mongo": "3.2.0",
"ejs": "^2.6.1",
"express": "^4.16.4",
"express-session": "1.17.0",
"image-to-base64": "^2.0.1",
"moment-timezone": "^0.5.23",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.1",
"randomstring": "^1.1.5",
"socketio": "^1.0.0",
"winston": "^3.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.10"
}
}