-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 842 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
{
"name": "discord-valorant-tournament-bot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "node_modules/.bin/tsc -p tsconfig.json -w",
"build": "node_modules/.bin/tsc -p tsconfig.json",
"start": "node dist/index.js",
"prod-start": "node_modules/.bin/tsc -p tsconfig.json && node dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"bufferutil": "^4.0.3",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"mongoose": "^5.13.2",
"utf-8-validate": "^5.0.5",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@types/node": "16.x",
"reflect-metadata": "^0.1.13",
"typescript": "^4.3.5"
}
}