-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.7 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.7 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
{
"name": "reol",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "pnpm build && node dist/index.js",
"build": "tsc",
"tsc-watch": "tsc --watch --preserveWatchOutput",
"nodemon": "nodemon dist/index.js",
"watch": "pnpm build && concurrently -k npm:tsc-watch npm:nodemon",
"auth": "ts-node src/utils/auth.ts",
"migrate": "tsc && typeorm migration:run -d dist/db/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/opus": "^0.10.0",
"@discordjs/voice": "^0.19.0",
"@snazzah/davey": "^0.1.6",
"app-root-path": "^3.1.0",
"async-retry": "^1.3.3",
"axios": "^1.5.1",
"discord.js": "14.18.0",
"dotenv": "^16.0.3",
"get-youtube-id": "^1.0.1",
"humanize-duration": "^3.28.0",
"isomorphic-unfetch": "^4.0.2",
"node-schedule": "^2.1.1",
"numeral": "^2.0.6",
"p-limit": "^3.1.0",
"reflect-metadata": "^0.2.2",
"spotify-url-info": "3.3.0",
"sqlite3": "^5.1.7",
"string-similarity": "^4.0.4",
"tidal-music-api": "^1.2.1",
"ts-jest": "^29.3.2",
"typeorm": "^0.3.15",
"youtubei.js": "^10.5.0"
},
"devDependencies": {
"@types/async-retry": "^1.4.5",
"@types/humanize-duration": "^3.27.1",
"@types/jest": "^29.5.14",
"@types/node": "^18.15.9",
"@types/node-schedule": "^2.1.1",
"@types/numeral": "^2.0.3",
"@types/string-similarity": "^4.0.2",
"@types/yt-search": "^2.10.3",
"concurrently": "^7.6.0",
"jest": "^29.7.0",
"nodemon": "^2.0.21",
"ts-node": "^10.9.1",
"typescript": "5.2.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"sqlite3",
"@discordjs/opus"
]
}
}