forked from TF2Autobot/tf2autobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.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
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
{
"name": "tf2autobot",
"version": "3.4.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": "IdiNium/Nicklas Marc Pedersen",
"license": "MIT",
"bugs": {
"url": "https://github.com/TF2Autobot/tf2autobot/issues"
},
"homepage": "https://github.com/TF2Autobot/tf2autobot#readme",
"dependencies": {
"async": "^3.2.0",
"bluebird": "^3.7.2",
"bluebird-global": "^1.0.1",
"bptf-listings-2": "^1.1.13",
"bptf-login-2": "^1.0.2",
"callback-queue": "^3.0.0",
"change-case": "^4.1.2",
"cheerio": "^1.0.0-rc.5",
"dayjs": "^1.10.4",
"death": "^1.1.0",
"dot-prop": "^6.0.1",
"dotenv": "^8.2.0",
"eslint-config-prettier": "^7.2.0",
"graceful-fs": "^4.2.6",
"isobject": "^4.0.0",
"js-levenshtein": "^1.1.6",
"jsonlint": "^1.6.3",
"jsonschema": "^1.4.0",
"module-alias": "^2.2.2",
"pjson": "^1.0.9",
"pluralize": "^8.0.0",
"pm2": "^4.5.4",
"rand-token": "^1.0.1",
"request-retry-dayjs": "^1.0.1",
"retry": "^0.12.0",
"sleep-async": "^1.0.5",
"socket.io-client": "^2.3.1",
"steam-totp": "^2.1.1",
"@tf2autobot/tradeoffer-manager": "^2.11.2",
"steam-user": "^4.19.3",
"steamcommunity": "^3.42.0",
"steamid": "^1.1.3",
"tf2": "^3.0.2",
"tf2-currencies-2": "^1.2.5",
"tf2-schema-2": "^1.2.5",
"tf2-sku-2": "^1.0.3",
"url": "^0.11.0",
"valid-url": "^1.0.9",
"websocket-extensions": "^0.1.4",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0",
"xmlhttprequest-ts": "^1.0.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.12.17",
"@types/async": "^3.2.5",
"@types/bluebird-global": "^3.5.12",
"@types/cheerio": "^0.22.24",
"@types/death": "^1.1.1",
"@types/graceful-fs": "^4.1.5",
"@types/jest": "^26.0.20",
"@types/pluralize": "0.0.29",
"@types/request": "^2.48.5",
"@types/retry": "^0.12.0",
"@types/semver": "^7.3.4",
"@types/socket.io-client": "^1.4.34",
"@types/valid-url": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-tsdoc": "^0.2.11",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"socket.io-mock": "^1.3.1",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
},
"private": true,
"_moduleAliases": {
"@pricer": "dist/lib/pricer"
}
}