-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1017 Bytes
/
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
{
"name": "wd201-capstone",
"version": "1.0.0",
"description": "Capstone project for WD201 - An LMS system that can be used by educators and students",
"main": "index.js",
"scripts": {
"pretest": "NODE_ENV=test npx sequelize-cli db:drop && NODE_ENV=test npx sequelize-cli db:create",
"test": "NODE_ENV=test jest --detectOpenHandles",
"start": "nodemon",
"start:prod": "node ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-session": "^1.18.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.35.2",
"tiny-csrf": "^1.1.4"
},
"devDependencies": {
"cheerio": "^1.0.0-rc.12",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"sequelize-cli": "^6.6.2",
"supertest": "^6.3.4"
}
}