-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 1.23 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
{
"name": "openapi-boilerplate",
"version": "0.0.6",
"description": "Multi-file boilerplate for Open API Specification.",
"main": "index.js",
"scripts": {
"test": "spectral lint openapi.yaml",
"preview": "redoc-cli serve openapi.yaml --options src/theme.json",
"html": "redoc-cli bundle openapi.yaml --output _build/index.html --options src/theme.json",
"clean": "rm -r _build",
"deploy": "./deploy.sh",
"generate": "./clean_out.sh out _build && npm run test && openapi-generator-cli generate -i openapi.yaml -o out/client -g $QOVERY_CLIENT_LANGUAGE -a bearer --api-package api --package-name qovery --model-package model --git-user-id qovery --git-repo-id qovery-client-$QOVERY_CLIENT_LANGUAGE -c generator/configs/$QOVERY_CLIENT_LANGUAGE.yaml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgarcia360/openapi-boilerplate.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dgarcia360/openapi-boilerplate/issues"
},
"homepage": "https://github.com/dgarcia360/openapi-boilerplate#readme",
"dependencies": {
"@openapitools/openapi-generator-cli": "^0.0.6",
"@stoplight/spectral-cli": "^6.5.1",
"react-is": "^18.2.0",
"redoc-cli": "^0.13.21"
}
}