-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "tt-squad-stats-updater",
"version": "1.5.0",
"description": "A Node process to keep player stats from the TT squad server updated in redis for rapid retrieval",
"main": "dist/index.js",
"engines": {
"node": ">=18.17.1",
"npm": ">=9.6.7"
},
"scripts": {
"start": "ts-node src/index.ts",
"start:dev": "ts-node-dev src/index.ts",
"start:prod": "node dist/index.js",
"build": "tsc",
"watch": "tsc -w",
"test": "jest --detectOpenHandles"
},
"author": "z1haze",
"license": "ISC",
"dependencies": {
"@sentry/cli": "^2.26.0",
"@sentry/node": "^7.98.0",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"fuse.js": "^7.0.0",
"glob": "^10.3.10",
"ioredis": "^5.3.2",
"knex": "^3.1.0",
"lodash": "^4.17.21",
"mysql2": "^3.6.5",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.5",
"babel-jest": "^29.5.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}