-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
{
"name": "lecture-link",
"version": "1.0.0",
"description": "Lecturer messaging app",
"main": "server.js",
"scripts": {
"setup": "npm install && npm run initpgsql",
"initpgsql": "createdb lecturelink2; psql lecturelink2 < sql/init.sql",
"loadDummyData": "psql lecturelink2 < sql/dummy-data.sql",
"start": "node server.js",
"devStart": "nodemon server.js",
"test": "qunit",
"doc": "jsdoc -c jsdoc.json",
"demo": "npm run setup && npm run loadDummyData && npm run start"
},
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"ejs": "^2.5.5",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.0",
"http": "0.0.0",
"jest": "^25.2.2",
"method-override": "^3.0.0",
"mocha": "^7.1.0",
"node-fetch": "^2.6.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg": "^7.18.1",
"qunit": "^2.9.3",
"request": "^2.88.2",
"supertest": "^4.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lucinda94/Lecture-Link.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Lucinda94/Lecture-Link/issues"
},
"devDependencies": {
"better-docs": "^1.4.7",
"jsdoc": "^3.6.3",
"jshint": "^2.11.0",
"nodemon": "^2.0.2"
}
}