-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 2.21 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
49
50
51
52
53
54
55
56
{
"name": "soen390",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"test": "mocha --file ./test/app.test.js --file ./test/login.test.js --file ./test/profile.test.js ./test/signup.test.js --exit",
"intTest": "mocha --file ./test/integration-tests/doctor-msg.test.js --file ./test/integration-tests/patient-msg.test.js --file ./test/integration-tests/login.test.js ./test/integration-tests/main-signup.test.js --file ./test/integration-tests/edit-profile.test.js --exit",
"testsuite": "mocha --file ./test/app.test.js --file ./test/login.test.js --file ./test/profile.test.js ./test/signup.test.js ./test/integration-tests/doctor-msg.test.js --file ./test/integration-tests/patient-msg.test.js --file ./test/integration-tests/login.test.js ./test/integration-tests/main-signup.test.js --file ./test/integration-tests/edit-profile.test.js --exit",
"coverage": "nyc --report=text npm run testsuite",
"teardown": "mocha ./test/teardown.test.js --exit",
"coverage-full": "nyc --reporter=lcov --report=text npm run testsuite"
},
"nyc": {
"include": "routes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gfdb/soen390.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gfdb/soen390/issues"
},
"homepage": "https://github.com/gfdb/soen390#readme",
"dependencies": {
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"body-parser": "1.8",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"express-flash": "^0.0.2",
"express-session": "^1.17.2",
"jest": "^27.5.1",
"jquery": "^3.6.0",
"mysql2": "^2.3.3",
"nodemailer": "^6.7.3",
"package": "^1.0.1",
"package.json": "^2.0.1",
"passport": "^0.5.2",
"passport-local": "^1.0.0",
"socket.io": "^4.4.1"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^9.2.0",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"supertest": "^6.2.2"
}
}