-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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": "fightcore.bot",
"version": "2.5.4",
"description": "FightCore Discord bot to display frame data",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig-build.json",
"start": "node -r dotenv/config ./build/index.js",
"dev": "tsc -p tsconfig-build.json && node -r dotenv/config ./build/index.js",
"lint": "eslint src/**/*.ts --ext .ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FightCore/bot-js.git"
},
"keywords": [
"melee",
"frame",
"data"
],
"author": "FightCore",
"license": "ISC",
"bugs": {
"url": "https://github.com/FightCore/bot-js/issues"
},
"homepage": "https://github.com/FightCore/bot-js#readme",
"dependencies": {
"@apollo/client": "^3.12.4",
"@datalust/winston-seq": "^2.0.0",
"@elastic/elasticsearch": "^8.17.0",
"axios": "^1.7.9",
"discord.js": "^14.17.2",
"dotenv": "^16.4.7",
"inversify": "^6.2.1",
"jaro-winkler-typescript": "^1.0.1",
"reflect-metadata": "^0.2.2",
"sqlite3": "^5.1.7",
"winston": "^3.17.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^16.18.123",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}