-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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": "discord-werewolf-bot",
"version": "0.0.1",
"description": "Discord Werewolf Bot",
"engines": {
"node": ">= 12.13 <13"
},
"author": "Lucien Blunk-Lallet <lucien.blunk.lallet@gmail.com>",
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "npm install typescript -g && tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --coverage",
"test:watch": "jest --watch",
"start": "node build/src/main.js"
},
"dependencies": {
"discord.js": "^11.5.1",
"dotenv": "^8.2.0",
"events": "^3.0.0",
"ioredis": "^4.14.1",
"redlock": "^4.1.0",
"tslib": "~1.10.0"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/node": "^12.12.7",
"jest": "~24.9.0",
"prettier": "~1.18.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"tslint": "~5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "~6.2.0",
"tsutils": "~3.17.0",
"typescript": "~3.7.2"
}
}