-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 962 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 962 Bytes
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
{
"name": "csc309a5",
"version": "1.0.0",
"description": "CSC309 Assignment 5",
"main": "server.js",
"private": true,
"scripts": {
"test": "node_modules/.bin/mocha -w",
"prestart": "mongod --dbpath data --fork --logpath /dev/null",
"start": "node server.js",
"poststop": "mongo admin --eval 'db.shutdownServer()' > /dev/null"
},
"engines": {
"node": "4.1.0"
},
"dependencies": {
"async": "^1.5.0",
"bcrypt": "^0.8.5",
"bcrypt-nodejs": "*",
"body-parser": "^1.14.1",
"bootstrap-social": "^4.11.0",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"express": ">= 1.2.0",
"express-session": ">= 1.12.1",
"googleapis": "^2.1.6",
"mocha": "*",
"mongodb": "^2.1.0",
"mongoose": "^4.2.9",
"mongoose-findorcreate": "^0.1.2",
"mongoose-types-ext": "^0.2.0",
"should": ">= 0.0.1",
"supertest": "^0.15.0",
"user-agent-parser": "^0.6.0",
"uuid": "^2.0.1"
}
}