-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.42 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.42 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
{
"name": "lottery-discord",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"dev": "npm run start:dev",
"tsc": "tsc",
"start:dev": "nodemon",
"start:prod": "tsc && node src/index.ts",
"build": "rimraf ./build && tsc",
"start": "npm run build && node --trace-deprecation build/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/opus": "^0.7.0",
"@discordjs/voice": "^0.7.5",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@types/better-sqlite3": "^5.4.3",
"array-shuffle": "^2.0.0",
"axios": "^0.21.4",
"better-sqlite3": "^7.4.3",
"colors": "^1.4.0",
"delay": "^5.0.0",
"discord-cmd-parser": "^2.2.0",
"discord.js": "^13.3.0",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"fluent-ffmpeg": "^2.1.2",
"fs-capacitor": "^6.2.0",
"got": "^11.8.3",
"hasha": "^5.2.2",
"iso8601-duration": "^1.3.0",
"module-alias": "^2.2.2",
"moment": "^2.29.1",
"node-recursive-directory": "^1.2.0",
"p-queue": "^6.6.2",
"queue-typescript": "^1.0.1",
"reflect-metadata": "^0.1.13",
"slash-create": "^5.0.2",
"spotify-uri": "^2.2.0",
"spotify-web-api-node": "^5.0.2",
"sqlite3": "^5.0.2",
"ts-node-esm": "0.0.6",
"type-fest": "^2.8.0",
"typedi": "^0.10.0",
"typeorm": "^0.2.37",
"typeorm-typedi-extensions": "^0.4.1",
"winston": "^3.3.3",
"youtube.ts": "^0.2.5",
"ytdl-core": "^4.9.2",
"ytsr": "^3.5.3"
},
"_moduleAliases": {
"@modules": "build/models",
"@services": "build/services",
"@commands": "build/commands",
"@repositories": "build/repositories",
"@src": "build",
"@utils": "build/utils",
"@loaders": "build/loaders",
"@events": "build/events",
"@models": "build/models"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/fluent-ffmpeg": "^2.1.20",
"@types/fs-capacitor": "^2.0.0",
"@types/fs-extra": "^9.0.12",
"@types/node": "^16.7.13",
"@types/spotify-web-api-node": "^5.0.4",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"nodemon": "^2.0.12",
"prettier": "^2.4.0",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}