-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.19 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.19 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
{
"name": "@remnawave/node",
"version": "2.6.1",
"description": "Remnawave Node",
"private": false,
"type": "commonjs",
"license": "AGPL-3.0-only",
"author": "REMNAWAVE <github.com/remnawave>",
"homepage": "https://github.com/remnawave",
"repository": {
"type": "git",
"url": "git+https://github.com/remnawave/node.git"
},
"bugs": {
"url": "https://github.com/remnawave/node/issues"
},
"bin": {
"cli": "dist/src/bin/cli/cli.js"
},
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "NODE_ENV=development nest start --watch",
"start:debug": "NODE_ENV=development nest start --debug --watch",
"start:prod": "NODE_ENV=production node --max-http-header-size=65536 dist/src/main",
"start:bun": "NODE_ENV=production bun run dist/src/main",
"prepare": "husky",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:fix:imports": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix --rule 'perfectionist/sort-imports: error'",
"knip": "knip"
},
"dependencies": {
"@henrygd/semaphore": "0.1.0",
"@kastov/body-parser-with-zstd": "2.2.2",
"@kastov/node-supervisord": ">=2.0.3",
"@nestjs/common": "11.1.14",
"@nestjs/config": "4.0.3",
"@nestjs/core": "11.1.14",
"@nestjs/jwt": "11.0.2",
"@nestjs/passport": "11.0.5",
"@nestjs/platform-express": "11.1.14",
"@peculiar/webcrypto": "^1.5.0",
"@peculiar/x509": "^1.14.3",
"@remnawave/hashed-set": "^0.0.4",
"@remnawave/supervisord-nestjs": "0.3.1",
"@remnawave/xtls-sdk": "0.11.1",
"@remnawave/xtls-sdk-nestjs": "0.6.1",
"compression": "^1.8.1",
"enhanced-ms": "^4.2.0",
"helmet": "^8.1.0",
"husky": "9.1.7",
"json-colorizer": "^3.0.1",
"morgan": "^1.10.1",
"nanoid": "^5.1.6",
"nest-winston": "^1.10.2",
"nestjs-zod": "4.3.1",
"nice-grpc": "^2.1.14",
"object-hash": "^3.0.0",
"p-map": "^7.0.4",
"p-retry": "^6.2.1",
"passport": "0.7.0",
"passport-jwt": "4.0.1",
"pkg-types": "^2.3.0",
"pretty-bytes": "^6.1.1",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2",
"semver": "^7.7.3",
"sockdestroy": "1.2.1",
"systeminformation": "^5.30.7",
"table": "^6.9.0",
"undici": "^7.20.0",
"winston": "^3.19.0",
"zod": "3.25.76"
},
"devDependencies": {
"@nestjs/cli": "11.0.16",
"@nestjs/schematics": "11.0.9",
"@types/compression": "^1.8.1",
"@types/express": "^5.0.6",
"@types/morgan": "^1.9.10",
"@types/node": "^24.10.1",
"@types/object-hash": "^3.0.6",
"@types/passport-jwt": "^4.0.1",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "8.49.0",
"@typescript-eslint/parser": "8.49.0",
"eslint": "9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-paths": "^1.1.0",
"eslint-plugin-perfectionist": "^4.15.1",
"eslint-plugin-prettier": "^5.5.4",
"knip": "^5.73.3",
"prettier": "^3.7.4",
"source-map-support": "^0.5.21",
"ts-loader": "9.5.4",
"ts-node": "10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
}
}