-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "gdis-server",
"version": "1.0.0",
"scripts": {
"build": "npm run clean:build && tsup src/index.ts --minify",
"start": "node dist/index.js",
"dev": "npm run build:watch",
"clean:build": "rimraf dist",
"build:watch": "npm run clean:build && tsc-watch --onSuccess \"npm run start-server\"",
"start-server": "tsx dist/index.js"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.17.0",
"@types/fluent-ffmpeg": "^2.1.27",
"axios": "^1.7.7",
"child_process": "^1.0.2",
"cors": "^2.8.5",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-fileupload": "^1.5.1",
"fluent-ffmpeg": "^2.1.3",
"form-data": "^4.0.1",
"fs": "^0.0.1-security",
"path": "^0.12.7",
"prism-media": "^1.3.5",
"rxjs": "^7.8.1",
"say": "^0.16.0",
"wav": "^1.0.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-fileupload": "^1.5.1",
"@types/md5": "^2.3.5",
"md5": "^2.3.0",
"rimraf": "^6.0.1",
"tsc-watch": "^6.2.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}