-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 887 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 887 Bytes
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
{
"name": "SwaggerNodeJSDemo",
"version": "1.0.0",
"description": "Demo app for showing integrating swagger as a UI middleware",
"main": "index.js",
"scripts": {
"start": "node bin/www",
"swagger": "./node_modules/.bin/swagger",
"api-edit": "./node_modules/.bin/swagger project edit",
"api-test": "./node_modules/.bin/swagger project test",
"test": "./node_modules/.bin/mocha test/**/*test.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.3",
"log4js": "^2.5.3",
"morgan": "^1.9.0",
"swagger-ui-express": "^3.0.8",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"dotenv": "^5.0.1",
"mocha": "^5.1.1",
"request": "^2.85.0",
"supertest": "^3.0.0",
"swagger": "^0.7.5",
"swagger-editor": "^3.5.4",
"z-schema": "^3.20.0"
}
}