-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·35 lines (35 loc) · 1.08 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
{
"name": "soen341backend",
"version": "1.0.0",
"description": "E-learning project for SOEN 341 at Concordia University, this package json relates to what is needed to run the backend of the application.",
"main": "app.js",
"scripts": {
"test": "mocha ./backend/test/spec.js",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha ./backend/test/spec.js",
"start:prod": "PORT=80 forever start -c nodemon app.js",
"stop:prod": "forever stop -c nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benrs/SOEN341_Project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/benrs/SOEN341_Project/issues"
},
"homepage": "https://github.com/benrs/SOEN341_Project#readme",
"dependencies": {
"bcrypt": "^1.0.2",
"body-parser": "^1.16.0",
"express": "^4.14.1",
"express-session": "^1.15.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mongodb": "^2.2.22",
"mongoose": "^4.8.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"supertest": "^3.0.0"
}
}