-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.54 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
{
"name": "chaotic-manager",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Garuda Team",
"license": "AGPL-3.0-or-later",
"private": true,
"dependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"async-mutex": "^0.5.0",
"await-timeout": "^1.1.1",
"await-to-js": "^3.0.0",
"command-line-args": "^6.0.0",
"cors": "^2.8.5",
"css-loader": "^7.1.2",
"dependency-graph": "^1.0.0",
"dockerode": "^4.0.2",
"express": "5.0.1",
"html-webpack-plugin": "^5.6.2",
"ioredis": "^5.4.1",
"moleculer": "^0.14.34",
"node-scp": "^0.0.23",
"node-telegram-bot-api": "^0.66.0",
"style-loader": "^4.0.0",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"build": "tsc && webpack",
"build-docs": "typedoc --out docs 'src/*.ts' 'src/*/*.ts' --plugin typedoc-material-theme --themeColor '#1e1e2e'",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:write": "eslint --fix .",
"start": "tsc && node dist/index.js",
"start:dev": "tsc-watch --onSuccess 'node --env-file=.env dist/index.js database --web-port 8080'",
"start:dev-builder": "tsc-watch --onSuccess 'sudo node --env-file=.env dist/index.js builder'",
"test": "jest"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@jest/globals": "^29.7.0",
"@types/await-timeout": "^0.3.3",
"@types/command-line-args": "^5.2.3",
"@types/config": "^3.3.5",
"@types/cors": "^2.8.17",
"@types/dockerode": "^3.3.31",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.7",
"@types/node-telegram-bot-api": "^0.64.7",
"@types/supertest": "^6.0.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tsdoc": "^0.3.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsc-watch": "^6.2.0",
"typed-moleculer": "^4.1.2",
"typedoc": "^0.26.10",
"typedoc-material-theme": "^1.1.0",
"typescript-eslint": "^8.10.0"
},
"packageManager": "[email protected]"
}