-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 894 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 894 Bytes
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": "forum-express-grading",
"version": "3.0.1",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"lint": "eslint \"**/*.js\" --fix",
"test": "mocha tests --exit --recursive --timeout 5000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ALPHACamp/forum-express-grading.git"
},
"dependencies": {
"express": "^4.17.1",
"mysql2": "^2.3.0",
"sequelize": "^6.6.5",
"sequelize-cli": "^6.2.0"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.1.1",
"nodemon": "^2.0.12",
"proxyquire": "^2.1.3",
"sequelize-mock": "^0.10.2",
"sinon": "^11.1.2",
"supertest": "^6.1.6"
}
}