-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.18 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
{
"name": "discord-bot",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "git@git.fakenews.sh:ctfkit/discord-bot.git",
"author": "Adam LE BON <lebon.adam@gmail.com>",
"license": "MIT",
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "npm run build-ts",
"format": "prettier --write .",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"devDependencies": {
"concurrently": "^5.3.0",
"eslint": "^7.14.0",
"nodemon": "^2.0.6",
"prettier": "^2.2.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@typeit/discord": "^4.0.9",
"@types/node": "^14.14.9",
"@types/ws": "^7.4.0",
"discord.js": "^12.5.3",
"dotenv": "^8.2.0",
"inversify": "^5.0.5",
"reflect-metadata": "^0.1.13",
"slugify": "^1.5.0",
"tslog": "^2.11.1"
}
}