-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 925 Bytes
/
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
{
"name": "bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "concurrently \"tsc -w\" \"nodemon build/index.js\"",
"deploy:commands": "tsc && node build/deploy-commands.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "4.17.13",
"@types/socket.io-client": "^1.4.35",
"concurrently": "6.4.0",
"nodemon": "2.0.15",
"typescript": "4.4.4"
},
"dependencies": {
"@discordjs/rest": "^0.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/socket.io": "^3.0.2",
"axios": "^0.26.1",
"cors": "^2.8.5",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"express": "4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.1",
"socket.io": "^4.5.0",
"socket.io-client": "^4.5.0"
}
}