-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.61 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "pb3-leaderboards-bot.ts",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@doctormckay/steam-webapi": "^1.1.1",
"agentkeepalive": "^4.2.1",
"axios": "^0.27.2",
"binary-parser": "^2.1.0",
"canvas": "^2.11.0",
"canvas-table": "^0.3.0",
"discord.js": "^14.11.0",
"dotenv": "^16.0.1",
"glob": "^8.0.3",
"lmdb": "^2.7.9",
"luxon": "^2.4.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.21.4",
"sequelize-typescript": "^2.1.3",
"sqlite3": "^5.0.11",
"steam-user": "^4.28.3",
"tiny-typed-emitter": "^2.1.0",
"uuid": "^8.3.2"
},
"scripts": {
"build": "npx tsc --build",
"bot": "npm run build && node dist/src/bot/Index.js",
"bot:dev": "ts-node-dev --files src/bot/Index.ts",
"steam": "ts-node-dev --files src/SteamTest.ts",
"cache": "ts-node-dev --files src/TestCache.ts",
"run": "ts-node-dev --files src/Test.ts",
"test": "ts-mocha --type-check -p tsconfig.json tests/**/*.test.ts"
},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/glob": "^7.2.0",
"@types/luxon": "^2.3.2",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@types/steam-user": "^4.26.4",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.6",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5",
"tslib": "^2.4.0"
}
}