-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.81 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.81 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "dockge-enhanced",
"version": "1.5.0",
"type": "module",
"engines": {
"node": ">= 22.14.0"
},
"scripts": {
"fmt": "eslint \"**/*.{ts,vue}\" --fix",
"lint": "eslint \"**/*.{ts,vue}\"",
"check-ts": "tsc --noEmit",
"start": "tsx ./backend/index.ts",
"dev": "concurrently -k -r \"wait-on tcp:5000 && npm run dev:backend \" \"npm run dev:frontend\"",
"dev:backend": "cross-env NODE_ENV=development tsx watch --inspect ./backend/index.ts",
"dev:frontend": "cross-env NODE_ENV=development vite --host --config ./frontend/vite.config.ts",
"build:frontend": "vite build --config ./frontend/vite.config.ts",
"reset-password": "tsx ./extra/reset-password.ts"
},
"dependencies": {
"@homebridge/node-pty-prebuilt-multiarch": "0.13.1",
"@inventage/envsubst": "^0.17.0",
"@louislam/sqlite3": "~15.1.6",
"@xterm/addon-search": "^0.16.0-beta.99",
"axios": "^1.18.1",
"bcryptjs": "~2.4.3",
"check-password-strength": "~2.0.10",
"command-exists": "~1.2.9",
"compare-versions": "~6.1.1",
"composerize": "~1.7.6",
"croner": "~8.1.2",
"dayjs": "~1.11.21",
"dotenv": "~16.6.1",
"express": "~4.22.2",
"express-static-gzip": "~2.2.0",
"http-graceful-shutdown": "~3.1.16",
"js-yaml": "^4.3.0",
"jsonwebtoken": "~9.0.3",
"jwt-decode": "~3.1.2",
"knex": "~2.5.1",
"limiter-es6-compat": "~2.1.2",
"mysql2": "~3.22.6",
"node-cron": "^3.0.3",
"promisify-child-process": "~4.1.2",
"redbean-node": "~0.3.3",
"semver": "^7.8.5",
"socket.io": "~4.8.3",
"socket.io-client": "~4.8.3",
"timezones-list": "~3.1.0",
"ts-command-line-args": "~2.5.1",
"tsx": "~4.23.1",
"type-fest": "~4.41.0",
"yaml": "~2.9.0"
},
"overrides": {
"form-data": "^4.0.4"
},
"devDependencies": {
"@actions/github": "^6.0.1",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-python": "^6.1.7",
"@codemirror/lang-yaml": "^6.1.3",
"@codemirror/legacy-modes": "^6.5.3",
"@fontsource/jetbrains-mono": "^5.2.8",
"@fortawesome/fontawesome-svg-core": "6.7.2",
"@fortawesome/free-regular-svg-icons": "6.7.2",
"@fortawesome/free-solid-svg-icons": "6.7.2",
"@fortawesome/vue-fontawesome": "3.3.1",
"@types/bcryptjs": "^2.4.6",
"@types/bootstrap": "~5.2.11",
"@types/command-exists": "~1.2.3",
"@types/express": "~4.17.21",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "~9.0.10",
"@types/node-cron": "^3.0.11",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "~6.21.0",
"@typescript-eslint/parser": "~6.21.0",
"@vitejs/plugin-vue": "~5.2.4",
"@xterm/addon-fit": "beta",
"@xterm/xterm": "beta",
"bootstrap": "5.3.8",
"bootstrap-vue-next": "~0.45.8",
"codemirror": "^6.0.1",
"concurrently": "^8.2.2",
"cross-env": "~7.0.3",
"eslint": "~8.50.0",
"eslint-plugin-jsdoc": "~46.10.1",
"eslint-plugin-vue": "~9.33.0",
"sass": "~1.101.0",
"thememirror": "^2.0.1",
"typescript": "~5.9.3",
"unplugin-vue-components": "~0.28.0",
"vite": "~5.4.21",
"vite-plugin-compression": "~0.5.1",
"vue": "~3.5.39",
"vue-codemirror6": "^1.6.1",
"vue-eslint-parser": "~9.4.3",
"vue-i18n": "~10.0.6",
"vue-qrcode": "~2.2.2",
"vue-router": "~4.6.4",
"vue-toastification": "2.0.0-rc.5",
"wait-on": "^7.2.0",
"xterm-addon-web-links": "~0.9.0"
}
}