-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 813 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 813 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
{
"name": "docs.warframestat.us",
"version": "1.0.0",
"private": true,
"dependencies": {
"@redocly/cli": "^2.27.1",
"serve": "^14.2.6"
},
"scripts": {
"bundle:yaml": "openapi bundle openapi/openapi.yaml -o web/openapi --ext yaml",
"bundle:json": "openapi bundle openapi/openapi.yaml -o web/openapi --ext json",
"bundle": "npm run bundle:yaml && npm run bundle:json",
"start": "openapi preview",
"test": "openapi lint openapi/openapi.yaml",
"split": "openapi split openapi.yaml --outDir openapi",
"preserve": "npm run bundle",
"serve": "serve -s web/.",
"prelint:built": "npm run bundle",
"lint:built": "openapi lint web/openapi.yaml && openapi lint web/openapi.json"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.4.0"
}
}