-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1019 Bytes
/
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
{
"name": "api-demo",
"version": "1.0.0",
"description": "Design api spacification",
"main": "server.js",
"scripts": {
"test1": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon server.js",
"test": "jest ---watchAll",
"up": "docker-compose up",
"down": "docker-compose down"
},
"keywords": [
"express",
"mongodb",
"openapi"
],
"author": "pisey",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-basic-auth": "^1.2.1",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.19",
"swagger-jsdoc": "^5.0.1",
"swagger-node-express": "^2.1.3",
"swagger-ui-express": "^4.5.0",
"validator": "^13.7.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"jest": "^28.1.3",
"supertest": "^6.2.4"
}
}