-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.68 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
{
"name": "hande-server",
"version": "2.25.3",
"description": "",
"main": "index.ts",
"scripts": {
"dev": "LOCAL=true NODE_PATH=./server NODE_OPTIONS='--tls-min-v1.0' nodemon --ignore message-history.json --exec ts-node -r tsconfig-paths/register server/index.ts",
"client": "npm run dev --prefix client",
"server": "npm run dev",
"watch": "tsc --noEmit --watch",
"lint": "eslint ./src",
"build": "tsc && tsc-alias -p tsconfig.aliases.json && npm run build --prefix client && npm run copy-files",
"generate-changelog": "npx marked ./CHANGELOG.md -o ./client/public/changelog.html",
"copy-files": "cp ./NoodleJS/Mumble.proto ./dist/NoodleJS/",
"postinstall": "npx prisma generate",
"start:prod": "NODE_PATH=./dist NODE_OPTIONS='--tls-min-v1.0' NODE_ENV=production node dist/server/index.js",
"start:pm2-prod": "npx pm2 start npm --name hande --exp-backoff-restart-delay=100 --max-restarts=30 -- run start:prod",
"test": "NODE_PATH=./src jest",
"release": "standard-version"
},
"author": "",
"license": "MIT",
"dependencies": {
"@discordjs/opus": "github:discordjs/opus",
"@prisma/client": "^5.1.1",
"@trpc/server": "^10.0.0-proxy-beta.8",
"axios": "^1.6.0",
"bcrypt": "^5.0.1",
"bluebird": "^3.7.2",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"events": "^3.3.0",
"express": "^4.18.1",
"fluent-ffmpeg": "^2.1.2",
"jsonwebtoken": "^9.0.0",
"luxon": "^3.2.1",
"m3u8stream": "^0.8.6",
"markdown-it": "^14.0.0",
"node-html-parser": "^6.1.12",
"protobufjs": "^7.2.6",
"superjson": "^1.11.0",
"ws": "^8.8.1",
"youtube-dl-wrap": "^2.1.1",
"zod": "^3.19.0"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.2",
"@types/bcrypt": "^5.0.0",
"@types/bluebird": "^3.5.36",
"@types/cors": "^2.8.12",
"@types/events": "^3.0.0",
"@types/express": "^4.17.14",
"@types/fluent-ffmpeg": "^2.1.20",
"@types/jest": "^29.2.4",
"@types/jsonwebtoken": "^9.0.6",
"@types/luxon": "^3.1.0",
"@types/markdown-it": "^13.0.7",
"@types/node": "^16.18.96",
"@types/standard-version": "^7.0.1",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^3.0.1",
"prettier": "^3.2.5",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"typescript-eslint": "^7.1.1"
},
"engines": {
"node": "16.x"
}
}