-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"name": "rythmbot",
"version": "1.0.0",
"description": "A discord bot for Rythmhacks",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node .",
"build": "tsc",
"cmdsDev": "ENV=dev node ./src/scripts/updateCommands.js",
"cmdsProd": "ENV=prod node ./src/scripts/updateCommands.js",
"init": "npm install && git update-index --skip-worktree ./src/types/database.ts && tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RythmHacks/discord-bot.git"
},
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/RythmHacks/discord-bot/issues"
},
"homepage": "https://github.com/RythmHacks/discord-bot#readme",
"dependencies": {
"@railway/cli": "^3.4.0",
"@supabase/supabase-js": "^2.15.0",
"cors": "^2.8.5",
"discord.js": "^14.8.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"http-errors": "^2.0.0",
"node-fetch": "^2.6.9",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^18.15.11",
"@types/node-fetch": "^2.6.3",
"supabase": "^1.49.4"
}
}