-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "ts-discord-akairo-template",
"version": "1.0.0",
"author": {
"name": "Caleb Delbridge",
"email": "[email protected]",
"url": "https://calebdelbridge.com"
},
"bugs": {
"url" : "https://github.com/CalebDelbridge/ts-discord-akairo-template/issues"
},
"dependencies": {
"chalk": "^4.1.0",
"custom-env": "^2.0.1",
"dayjs": "^1.9.8",
"discord-akairo": "^8.1.0",
"discord.js": "^12.5.1"
},
"devDependencies": {
"@types/node": "^14.6.2",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.2.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.2"
},
"scripts": {
"dev": "ts-node-dev --rs --transpile-only source/Bot.ts",
"start": "node ./build/shardManager.js",
"build": "rimraf ./build && tsc --project tsconfig.json"
}
}