-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 916 Bytes
/
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
{
"name": "aoe2tgbot2",
"version": "1.0.0",
"description": "",
"main": "src/main.ts",
"scripts": {
"build": "tsc -p . && cp .env ./dist/.env",
"dev": "nodemon src/main.ts",
"start": "ts-node dist/src/main.js",
"tests": "jest --colors --runInBand",
"coverage:print": "jest --coverage --colors --runInBand",
"coverage:report": "jest --coverage --colors --runInBand --reporters"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"better-sqlite3": "^7.6.0",
"discord.js": "^13.8.1",
"dotenv": "^16.0.1",
"reflect-metadata": "^0.1.13",
"ts-trueskill": "^3.3.0",
"typeorm": "^0.3.7",
"typescript": "^4.8.4",
"wokcommands": "^1.5.3"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^17.0.45",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1"
}
}