-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 KB
/
package.json
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
{
"name": "unicda-requests",
"version": "1.0.0",
"description": "UNICDA Requests backend",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarluanEspiritusanto/UNICDA-Requests.git"
},
"keywords": [
"nodejs",
"restful",
"backend"
],
"author": "Marluan Espiritusanto",
"license": "ISC",
"bugs": {
"url": "https://github.com/MarluanEspiritusanto/UNICDA-Requests/issues"
},
"homepage": "https://github.com/MarluanEspiritusanto/UNICDA-Requests#readme",
"devDependencies": {
"@types/jest": "^24.0.15",
"dotenv": "^8.0.0",
"jest": "^24.8.0",
"mockingoose": "^2.13.1",
"nodemon": "^1.19.1"
},
"dependencies": {
"awilix": "^4.2.2",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"memory-cache": "^0.2.0",
"mongoose": "^5.6.5",
"swagger-ui-express": "^4.0.7"
}
}