-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 933 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "@vality/swag-claim-management",
"version": "0.1.0",
"license": "Apache-2.0",
"scripts": {
"start": "redocly preview-docs",
"validate": "redocly lint",
"bundle:yaml": "npm run bundle:json -- --yaml -o ./web_deploy/swagger.yaml",
"bundle:json": "npx swagger-repo bundle --basedir ./spec/ -o ./web_deploy/swagger.json",
"build": "mkdir -p ./web_deploy && npm run bundle:yaml && npm run bundle:json",
"build-docs": "redocly build-docs -o web_deploy/index.html",
"build-web": "npm run build && npm run build-docs",
"build-ng-lib": "vality-openapi generate ./web_deploy/swagger.json",
"postinstall": "mkdir -p ./scripts && cp -a ./node_modules/@vality/redocly-utils/lib/swagger-plugins ./scripts/plugins"
},
"devDependencies": {
"@redocly/cli": "^1.33.0",
"@vality/openapi-generator-cli": "^3.0.2",
"@vality/redocly-utils": "^0.3.0",
"swagger-repo": "1.5.1"
}
}