-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 3.14 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "fleetbot",
"version": "1.0.0",
"description": "fleetbot refills your fleets in Star Atlas Score",
"scripts": {
"build": "tsc",
"build:docker": "docker build -t fleetbot -f docker/app/Dockerfile .",
"db:migrate": "npm run typeorm -- migration:run",
"lint": "eslint .",
"lint:docker": "docker run --rm -i hadolint/hadolint < cicd/docker/app/Dockerfile",
"lint:yaml": "yamllint .",
"clean": "rm -rf build",
"start:fleetbot": "ts-node-dev -r ./src/setup-aliases.ts --transpile-only --rs --inspect=19230 -- src/main/fleetbot",
"start:basedbot": "ts-node-dev -r ./src/setup-aliases.ts --transpile-only --rs --inspect=19230 -- src/main/basedbot",
"typeorm": "typeorm-ts-node-commonjs -d src/db/db-data-source.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mindrunner/fleetbot.git"
},
"author": "Lukas Elsner",
"license": "MIT",
"bugs": {
"url": "https://github.com/mindrunner/fleetbot/issues"
},
"homepage": "https://github.com/mindrunner/fleetbot#readme",
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@faker-js/faker": "^9.3.0",
"@sentry/integrations": "^7.114.0",
"@sentry/node": "^8.45.0",
"@sentry/tracing": "^7.114.0",
"@solana/spl-token": "^0.4.9",
"@solana/web3.js": "^1.95.8",
"@staratlas/atlas-prime": "^0.13.1",
"@staratlas/cargo": "^1.1.0",
"@staratlas/claim-stake": "^0.12.0",
"@staratlas/crafting": "^1.1.0",
"@staratlas/data-source": "^0.8.3",
"@staratlas/factory": "^0.7.1",
"@staratlas/player-profile": "^0.11.0",
"@staratlas/points": "^1.1.0",
"@staratlas/profile-faction": "^0.6.0",
"@staratlas/sage": "^1.8.4",
"big.js": "^6.2.2",
"bip39": "^3.1.0",
"bn.js": "^5.2.1",
"bs58": "^6.0.0",
"chance": "^1.1.12",
"cron": "^3.3.1",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"punycode": "^2.3.1",
"ed25519-hd-key": "^1.3.0",
"module-alias": "^2.2.3",
"pg": "^8.13.1",
"pretty-error": "^4.0.0",
"superagent": "^10.1.1",
"telegraf": "^4.16.3",
"typeorm": "^0.3.20",
"undici": "^7.1.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/big.js": "^6.2.2",
"@types/bn.js": "^5.1.6",
"@types/bs58": "^4.0.4",
"@types/chance": "^1.1.6",
"@types/module-alias": "^2.0.4",
"@types/pg": "^8.11.10",
"@types/superagent": "^8.1.9",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"globals": "^15.13.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2"
},
"packageManager": "[email protected]"
}