-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 963 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 963 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
36
37
38
39
40
41
{
"name": "quiz-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "env-cmd -f ./config/dev.env nodemon",
"test": "env-cmd -f ./config/test.env jest --watch"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fil45/quiz-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fil45/quiz-server/issues"
},
"homepage": "https://github.com/fil45/quiz-server#readme",
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"env-cmd": "^10.0.1",
"express": "^4.17.1",
"express-validation": "^1.0.3",
"joi": "^14.3.1",
"lodash": "^4.17.15",
"mysql2": "^2.0.0",
"sequelize": "^5.21.2"
},
"devDependencies": {
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"sequelize-mock": "^0.10.2",
"supertest": "^4.0.2"
}
}