-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.11 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
44
45
46
47
{
"name": "e-learning-system",
"version": "1.0.0",
"description": "E-learning System",
"main": "server.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvarez98/e-learning-system.git"
},
"author": "Adolfo Alvarez",
"license": "ISC",
"bugs": {
"url": "https://github.com/alvarez98/e-learning-system/issues"
},
"homepage": "https://github.com/alvarez98/e-learning-system#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-joi-validation": "^4.0.4-beta.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.3.0",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.3",
"sequelize-cli": "^6.2.0",
"swagger-jsdoc": "^1.3.0",
"swagger-ui-express": "^4.1.4",
"uuid": "^8.3.0"
},
"devDependencies": {
"jest": "^26.2.1",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}