-
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.04 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.04 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": "elearning-platform-backend",
"version": "1.0.0",
"description": "Backend for eLearning Platform",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "nodemon index.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codyveladev/eLearning-Platform-Backend.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/codyveladev/eLearning-Platform-Backend/issues"
},
"homepage": "https://github.com/codyveladev/eLearning-Platform-Backend#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"colors": "^1.4.0",
"cors": "^2.8.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.2",
"nodemon": "^2.0.7",
"swagger-jsdoc": "^6.0.1",
"swagger-ui-express": "^4.1.6"
},
"config": {
"mongodbMemoryServer": {
"version": "4.4.1"
}
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"jest": "^26.6.3"
}
}