forked from ALPHACamp/forum-express-grading-2021
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.05 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.05 KB
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
{
"name": "forum-express-grading",
"version": "2.0.0",
"main": "_helpers.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "mocha tests --exit --recursive --timeout 5000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ALPHACamp/forum-express-grading.git"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.4",
"express-session": "^1.17.2",
"faker": "^5.5.3",
"imgur-node-api": "^0.1.0",
"method-override": "^3.0.0",
"moment": "^2.29.1",
"multer": "^1.4.3",
"mysql2": "^2.3.2",
"nodemon": "^2.0.12",
"passport": "^0.5.0",
"passport-local": "^1.0.0",
"pg": "^8.7.1",
"sequelize": "^6.9.0",
"sequelize-cli": "^6.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.2.0",
"proxyquire": "^2.1.3",
"sequelize-mock": "^0.10.2",
"sinon": "^9.2.0",
"supertest": "^5.0.0"
}
}