-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.42 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
78
79
80
81
82
{
"name": "k8s-playground",
"version": "0.0.3",
"packageManager": "[email protected]",
"description": "k8s playground with NaiveUI+Vue+NestJS+Electron,made by TypeScript",
"author": "weibaohui <[email protected]>",
"main": "dist/backend/index.js",
"scripts": {
"dev": "rimraf dist && vite",
"build": "rimraf dist && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "electron-builder install-app-deps",
"gen": "openapi --input http://127.0.0.1:3007/api-json --output ./src/frontend/generated --useOptions --name=Play"
},
"dependencies": {
"@doubleshot/nest-electron": "^0.2.5",
"@kubernetes/client-node": "^0.19.0",
"@nestjs/common": "^10.2.8",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.2.8",
"@nestjs/microservices": "^10.2.8",
"@nestjs/platform-express": "^10.2.8",
"@nestjs/platform-socket.io": "^10.2.8",
"@nestjs/schedule": "^3.0.4",
"@nestjs/serve-static": "^4.0.0",
"@nestjs/swagger": "^7.1.15",
"@nestjs/websockets": "^10.2.8",
"axios": "^1.6.1",
"echarts": "^5.4.3",
"file-saver": "^2.0.5",
"is-base64": "^1.1.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"monaco-editor": "^0.44.0",
"naive-ui": "^2.35.0",
"node-pty": "^1.0.0",
"randomstring": "^1.3.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"socket.io": "^4.7.2",
"swagger-ui-express": "^5.0.0",
"vue": "^3.3.8",
"vue-router": "^4.2.5",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@lightwing/eslint-config": "^0.0.24",
"@types/echarts": "^4.9.21",
"@types/file-saver": "^2.0.7",
"@types/lodash": "^4.14.201",
"@types/node": "^20.9.0",
"@vicons/fa": "^0.12.0",
"@vitejs/plugin-vue": "4.4.0",
"@vue/compiler-sfc": "3.3.4",
"electron": "27.0.0",
"electron-builder": "24.6.4",
"eslint": "8.51.0",
"lint-staged": "14.0.1",
"naive-ui": "^2.35.0",
"rimraf": "5.0.5",
"simple-git-hooks": "2.9.0",
"socket.io-client": "^4.7.2",
"swagger-ts-generator": "^2.0.6",
"typescript": "5.2.2",
"vfonts": "^0.0.3",
"vite": "4.4.11",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-doubleshot": "0.0.12",
"vue-tsc": "1.8.19"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md,json,yml}": [
"eslint --fix"
]
}
}