-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 824 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 824 Bytes
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
{
"name": "oscar",
"version": "1.0.0",
"description": "OSCAR is a Discord bot tasked with community assistance",
"main": "index.ts",
"repository": "https://github.com/Codesee-io/osh-bot",
"author": "Maxime Preaux",
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev": "nodemon index.ts",
"start": "ts-node index.ts",
"deploy": "git push heroku main",
"upload:commands": "ts-node src/setup-commands.ts"
},
"devDependencies": {
"nodemon": "^2.0.16",
"typescript": "^4.6.4"
},
"dependencies": {
"@discordjs/builders": "^0.13.0",
"@discordjs/rest": "^0.4.1",
"axios": "^0.27.2",
"discord-api-types": "^0.33.0",
"discord.js": "^13.7.0",
"dotenv": "^16.0.1",
"firebase-admin": "^10.2.0",
"ts-node": "^10.7.0",
"yargs": "^17.5.1"
}
}