-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.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
{
"name": "msrt_bot",
"version": "1.0.0",
"main": "dist/index.js",
"author": "@sapphire",
"license": "UNLICENSE",
"type": "commonjs",
"dependencies": {
"@sapphire/decorators": "^6.1.1",
"@sapphire/discord.js-utilities": "7.3.2",
"@sapphire/framework": "^5.3.2",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/utilities": "^3.18.1",
"@skyra/env-utilities": "^1.3.0",
"colorette": "^2.0.20",
"discord-transcript": "^2.0.9",
"discord-transcript-v2": "^1.0.16",
"discord.js": "^14.17.3",
"dotenv": "^16.4.7",
"googleapis": "^144.0.0",
"lavalink-client": "^2.9.11",
"node-cron": "^3.0.3",
"pg": "^8.13.1",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@sapphire/cli": "^1.9.3",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^22.10.7",
"@types/node-cron": "^3.0.0",
"@types/ws": "^8.5.13",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"tsc-watch": "^6.3.0",
"tsx": "^4.20.6",
"typescript": "~5.4.5"
},
"scripts": {
"sapphire": "sapphire",
"generate": "sapphire generate",
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "npm run build && npm run start",
"watch:start": "tsc-watch --onSuccess \"npm run start\"",
"format": "prettier --write \"src/\"",
"cron": "node -e \"require('./dist/index').checkYouTubeChannel()\"",
"tslesson": "tsx src/commands/cheatsheet.ts"
},
"prettier": "@sapphire/prettier-config"
}