-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.35 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
43
44
{
"name": "discod",
"version": "2.1.1",
"description": "COD4 Discord Bot",
"main": "build/index.js",
"repository": "https://github.com/Zoro-6191/disCOD.git",
"author": "Zoro",
"license": "MIT",
"devDependencies": {
"@types/figlet": "^1.5.4",
"@types/gradient-string": "^1.1.2",
"@types/mysql": "^2.15.21",
"@types/node": "^8.0.29",
"@types/node-fetch": "^2.6.1",
"@types/tail": "^2.2.1",
"nodemon": "^2.0.15",
"typescript": "3.3.3333"
},
"dependencies": {
"@discordjs/rest": "^0.3.0",
"axios": "^0.26.1",
"chalk": "4.1.2",
"discord-api-types": "^0.27.2",
"discord.js": "^13.6.0",
"figlet": "^1.5.2",
"gradient-string": "^2.0.0",
"iconv-lite": "^0.6.3",
"json5": "^2.2.0",
"mysql": "^2.14.1",
"node-fetch": "^2.6.7",
"ora": "5.4.1",
"reflect-metadata": "^0.1.10",
"tail": "^2.2.4",
"typeorm": "^0.3.0-rc.36"
},
"scripts": {
"prebuild": "mkdir build && mkdir build/conf && mkdir build/sql && cp -R ./src/conf/*.{json5,json,txt,ini,xml} ./build/conf && cp -R ./src/sql/*.sql ./build/sql",
"build": "tsc",
"start": "ts-node src/index.ts",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
"watchts": "tsc -w",
"watchjs": "nodemon build/index.js"
}
}