-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
45 lines (45 loc) · 1.17 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": "falconmicroservices",
"version": "1.0.0",
"description": "file storage microservices",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon -r dotenv/config index.js",
"test": "export NODE_ENV=test || SET \"NODE_ENV=test\" && nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olucheye/falconMicroservices.git"
},
"author": "teamFalcon",
"license": "MIT",
"bugs": {
"url": "https://github.com/olucheye/falconMicroservices/issues"
},
"homepage": "https://github.com/olucheye/falconMicroservices#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-validator": "^6.5.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.18",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"shortid": "^2.2.15",
"swagger-ui-express": "^4.1.4",
"xml-js": "^1.6.11"
},
"devDependencies": {
"nodemon": "^1.19.4",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"supertest": "^4.0.2"
}
}