forked from Zowlyfon/lag-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.43 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
{
"name": "lag-bot",
"version": "1.0.0",
"description": "Discord bot for gnulag",
"main": "build/index.js",
"scripts": {
"build:typescript": "npx tsc",
"run:node": "node build/src/index.js",
"dev": "nodemon --watch src/ -e ts --exec ts-node src/index.ts",
"run": "npm run build:typescript && npm run run:node",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint src/**/*.ts --fix",
"deploy": "npm run build:typescript && node build/scripts/deploy-commands.js",
"prettier": "prettier 'src/**/*.ts'",
"prettier:fix": "prettier --write 'src/**/*.ts'"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"yahoo-finance2": "^2.3.6"
},
"dependencies": {
"@discordjs/opus": "^0.8.0",
"@discordjs/rest": "^1.0.1",
"axios": "^0.27.2",
"dexie": "^4.0.0-alpha.4",
"discord-music-player": "^9.0.2",
"discord.js": "^14.2.0",
"dotenv": "^16.0.1",
"leveldown": "^6.1.1",
"node": "^16.16.0",
"pouchdb-adapter-leveldb": "^7.3.0",
"reflect-metadata": "^0.1.13",
"rxdb": "^12.7.16",
"rxjs": "^7.5.6",
"typedi": "^0.10.0",
"ytdl-core": "^4.11.1"
}
}