-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.89 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "api-tools",
"description": "Set of tools to perform API transformation and analysis",
"version": "1.0.0",
"license": "AGPL-3.0",
"author": "marc0l92",
"keywords": [
"Swagger",
"OpenAPI",
"API"
],
"scripts": {
"dev": "pnpm run dev:build watch",
"dev:build": "tsc -noEmit -skipLibCheck && node src/cli/esbuild.config.mjs --configFile=config/config.dev.yaml",
"dev:generate": "cp -rf ./test/data/* ./inputApi && pnpm run dev:build && node dist/api-portal-cli.js --configFile=config/config.dev.yaml --command=generate",
"dev:applyTags": "pnpm run dev:build && node dist/api-portal-cli.js --configFile=config/config.dev.yaml --command=applyTags --servicesTagsFile=config/servicesTags.dev.json",
"generate": "node dist/api-portal-cli.js --command=generate",
"validate": "node dist/api-portal-cli.js --command=validate",
"applyTags": "node dist/api-portal-cli.js --command=applyTags",
"test": "jest --silent=false",
"build": "tsc -noEmit -skipLibCheck && node src/cli/esbuild.config.mjs production",
"configSchema": "typescript-json-schema --required src/cli/buildConfig.ts BuildConfig > dist/buildConfig.schema.json && typescript-json-schema --required src/cli/servicesTagsConfig.ts ServicesTagsConfig > dist/servicesTagsConfig.schema.json",
"lint": "eslint ./src"
},
"dependencies": {
"@codemirror/lang-json": "^6.0.1",
"@codemirror/language": "^6.8.0",
"@codemirror/view": "^6.14.0",
"@uiw/codemirror-theme-github": "^4.21.7",
"codemirror": "^6.0.1",
"fflate": "^0.7.4",
"fuse.js": "^6.6.2",
"js-yaml": "^4.1.0",
"jszip": "^3.10.1",
"plantuml-encoder": "^1.4.0",
"pluralize": "^8.0.0",
"svelte-codemirror-editor": "^1.1.0",
"swagger-ui": "^4.18.2",
"swagger-ui-flat-model-plugin": "^0.4.0",
"util": "^0.12.5",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@stoplight/spectral-cli": "^6.6.0",
"@tsconfig/svelte": "^3.0.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.15.11",
"@types/object-hash": "^3.0.2",
"@types/plantuml-encoder": "^1.4.0",
"@types/pluralize": "^0.0.30",
"@types/swagger-ui": "^3.52.0",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"builtin-modules": "^3.3.0",
"esbuild": "^0.17.14",
"esbuild-svelte": "^0.7.3",
"eslint": "^8.44.0",
"fs-extra": "^11.1.1",
"glob": "^9.3.2",
"jest": "^29.5.0",
"object-hash": "^3.0.0",
"sass": "^1.60.0",
"svelte": "^3.58.0",
"svelte-preprocess": "^5.0.3",
"svelte-preprocess-sass": "^2.0.1",
"ts-jest": "^29.0.5",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"typescript-json-schema": "^0.55.0",
"yargs": "^17.7.1"
}
}