-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
112 lines (112 loc) · 3.85 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "tf2autobot",
"version": "5.13.0",
"description": "Fully automated TF2 trading bot advertising on www.backpack.tf using prices from www.prices.tf, Originally made by Nicklason.",
"main": "dist/app.js",
"scripts": {
"release": "np --no-cleanup --no-publish",
"build": "tsc -p .",
"pretest": "npm run lint",
"test": "jest",
"prelint": "npm run eslint-check",
"lint": "eslint .",
"prettier": "prettier --check src/**/* && prettier --check *.json",
"eslint-check": "npx eslint-config-prettier src/app.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TF2Autobot/tf2autobot.git"
},
"author": "TF2Autobot/IdiNium",
"license": "MIT",
"bugs": {
"url": "https://github.com/TF2Autobot/tf2autobot/issues"
},
"updaterepo": true,
"updateMessage": "Steam/TF2 is quite unstable right now, update/restart at your own will.",
"homepage": "https://github.com/TF2Autobot/tf2autobot#readme",
"dependencies": {
"@tf2autobot/bptf-listings": "^5.7.7",
"@tf2autobot/bptf-login": "^2.3.7",
"@tf2autobot/filter-axios-error": "^1.5.3",
"@tf2autobot/jsonlint": "^1.0.0",
"@tf2autobot/steamcommunity": "^3.48.2",
"@tf2autobot/tf2": "^1.3.6",
"@tf2autobot/tf2-currencies": "^2.0.1",
"@tf2autobot/tf2-schema": "^4.5.0",
"@tf2autobot/tf2-sku": "^2.0.4",
"@tf2autobot/tradeoffer-manager": "^2.17.6",
"async": "^3.2.5",
"axios": "^1.6.8",
"bluebird": "^3.7.2",
"bluebird-global": "^1.0.1",
"body-parser": "^1.20.2",
"callback-queue": "^3.0.0",
"change-case": "^4.1.2",
"cheerio": "^1.0.0-rc.12",
"dayjs": "^1.11.10",
"death": "^1.1.0",
"discord.js": "^14.14.1",
"dot-prop": "^6.0.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"isobject": "^4.0.0",
"js-levenshtein": "^1.1.6",
"jsonschema": "^1.4.1",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.2",
"pjson": "^1.0.9",
"pluralize": "^8.0.0",
"pm2": "^5.3.0",
"pretty-ms": "^7.0.1",
"reconnecting-websocket": "^4.4.0",
"retry": "^0.13.1",
"semver": "^7.6.0",
"socket.io-client": "^4.7.5",
"steam-totp": "^2.1.2",
"steam-user": "^5.0.9",
"steamid": "^2.0.0",
"url": "^0.11.3",
"valid-url": "^1.0.9",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^4.7.1",
"write-file-atomic": "^5.0.0",
"ws": "^7.5.10"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.1",
"@types/async": "^3.2.24",
"@types/bluebird-global": "^3.5.18",
"@types/cheerio": "^0.22.35",
"@types/death": "^1.1.5",
"@types/express": "^4.17.21",
"@types/graceful-fs": "^4.1.9",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.5",
"@types/pluralize": "^0.0.33",
"@types/request": "^2.48.12",
"@types/retry": "^0.12.5",
"@types/semver": "^7.5.8",
"@types/valid-url": "^1.0.7",
"@types/write-file-atomic": "^4.0.3",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"global-agent": "^3.0.0",
"jest": "^29.7.0",
"prettier": "^2.8.7",
"socket.io-mock": "^1.3.2",
"ts-jest": "^29.1.2",
"typescript": "^5.4.4"
},
"private": true,
"_moduleAliases": {
"@pricer": "dist/lib/pricer"
}
}