forked from PRO-Robotech/openapi-ui-k8s-bff
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.77 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.77 KB
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
{
"name": "openapi-ui-k8s-bff",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsup",
"start": "node dist/index.js",
"dev:prod": "cross-env PORT=4002 ts-node -r tsconfig-paths/register dist/index.js",
"dev": "cross-env DEVELOPMENT=TRUE PORT=4002 tsx watch src/index.ts",
"tsc": "tsc --project tsconfig.json",
"lint:js": "eslint",
"lint": "npm run lint:js && npm run tsc",
"swagger:gen": "ts-node ./src/swagger.ts"
},
"dependencies": {
"@kubernetes/client-node": "1.4.0",
"@readme/openapi-parser": "4.0.0",
"apicache": "1.6.3",
"axios": "1.10.0",
"body-parser": "1.20.2",
"cors": "2.8.5",
"dotenv": "16.4.5",
"express": "4.19.2",
"express-healthcheck": "0.1.0",
"express-prometheus-middleware": "1.2.0",
"express-winston": "4.2.0",
"express-ws": "5.0.2",
"jsonpath": "1.1.1",
"lodash": "4.17.21",
"node-cache": "5.1.2",
"openapi-types": "12.1.3",
"swagger-autogen": "2.23.7",
"swagger-ui-express": "5.0.1",
"uuid": "10.0.0",
"winston": "3.17.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/cookie": "0.6.0",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/express-ws": "3.0.5",
"@types/jsonpath": "0.2.4",
"@types/lodash": "4.17.19",
"@types/node": "20.14.2",
"@types/uuid": "10.0.0",
"builtin-modules": "5.0.0",
"cross-env": "7.0.3",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-prettier": "5.0.0",
"nodemon": "3.1.3",
"prettier": "3.0.2",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"tsup": "8.5.0",
"tsx": "4.20.6",
"typescript": "5.4.5",
"typescript-eslint": "8.1.0"
}
}