-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 857 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 857 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
32
{
"name": "tt-bot",
"version": "1.0.0",
"description": "",
"main": "bot.js",
"scripts": {
"build": "echo \"Updating packages, Deleting dist/ and re-compiling\" && npm install && rimraf dist/ && tsc",
"start": "tsc && node dist/bot.js",
"startprod": "npm run-script build && node dist/bot.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"discord-akairo": "^8.1.0",
"discord.js": "^12.5.3",
"dotenv": "^8.2.0",
"googleapis": "^81.0.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0"
},
"devDependencies": {
"@types/koa": "^2.13.1",
"@types/koa-bodyparser": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.27.0",
"rimraf": "^3.0.2",
"typescript": "^4.2.4"
}
}