forked from remnawave/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.02 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.02 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
{
"name": "@remnawave/node",
"version": "2.1.3",
"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": "https://github.com/remnawave/node"
},
"bugs": {
"url": "https://github.com/remnawave/node/issues"
},
"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'"
},
"dependencies": {
"@cjs-exporter/execa": "9.5.2",
"@nestjs/common": "11.1.6",
"@nestjs/config": "4.0.2",
"@nestjs/core": "11.1.6",
"@nestjs/jwt": "11.0.0",
"@nestjs/passport": "11.0.5",
"@nestjs/platform-express": "11.1.6",
"@remnawave/hashed-set": "^0.0.4",
"@remnawave/supervisord-nestjs": "0.1.1",
"@remnawave/xtls-sdk": "0.5.0",
"@remnawave/xtls-sdk-nestjs": "0.4.0",
"compression": "^1.8.1",
"enhanced-ms": "^4.1.0",
"helmet": "^8.1.0",
"husky": "9.1.7",
"morgan": "^1.10.1",
"nanoid": "^5.1.5",
"nest-winston": "^1.10.2",
"nestjs-zod": "4.3.1",
"node-object-hash": "^3.1.1",
"node-supervisord": "^1.0.6-rc.2",
"object-hash": "^3.0.0",
"p-retry": "^6.2.1",
"passport": "0.7.0",
"passport-jwt": "4.0.1",
"pkg-types": "^2.1.0",
"pretty-bytes": "^6.1.1",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2",
"selfsigned": "^2.4.1",
"semver": "^7.7.1",
"systeminformation": "^5.25.11",
"table": "^6.9.0",
"winston": "^3.17.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@nestjs/cli": "11.0.10",
"@nestjs/schematics": "11.0.7",
"@types/compression": "^1.8.1",
"@types/express": "^5.0.3",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^9.0.10",
"@types/mjml": "^4.7.4",
"@types/morgan": "^1.9.10",
"@types/node": "^22.13.14",
"@types/nunjucks": "^3.2.6",
"@types/object-hash": "^3.0.6",
"@types/passport-jwt": "^4.0.1",
"@types/semver": "^7.7.0",
"@typescript-eslint/eslint-plugin": "8.28.0",
"@typescript-eslint/parser": "8.28.0",
"eslint": "9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-paths": "^1.1.0",
"eslint-plugin-perfectionist": "^4.10.1",
"eslint-plugin-prettier": "^5.2.5",
"prettier": "^3.5.3",
"source-map-support": "^0.5.21",
"ts-loader": "9.5.2",
"ts-node": "10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "~5.8.2"
}
}