This repository has been archived by the owner on Nov 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
83 lines (83 loc) · 2.75 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
{
"name": "tf2-automatic",
"version": "3.5.2",
"description": "Fully automated TF2 trading bot advertising on www.backpack.tf using prices from www.prices.tf",
"main": "dist/app.js",
"scripts": {
"release": "np --no-cleanup --no-publish",
"build": "tsc -p .",
"pretest": "npm run eslint-check",
"test": "npm run lint",
"lint": "eslint \"src/**/*\"",
"prettier": "prettier --check src/**/*",
"eslint-check": "eslint --print-config src/app.ts | eslint-config-prettier-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nicklason/tf2-automatic.git"
},
"author": "Nicklas Marc Pedersen",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nicklason/tf2-automatic/issues"
},
"homepage": "https://github.com/Nicklason/tf2-automatic#readme",
"dependencies": {
"@nicklason/request-retry": "^1.1.2",
"async": "^3.2.0",
"bluebird": "^3.7.2",
"bluebird-global": "^1.0.1",
"bptf-listings": "^4.5.0",
"bptf-login": "^1.0.3",
"callback-queue": "^3.0.0",
"cheerio": "^1.0.0-rc.3",
"death": "^1.1.0",
"dot-prop": "^5.2.0",
"dotenv": "^8.2.0",
"graceful-fs": "^4.2.3",
"isobject": "^4.0.0",
"jsonschema": "^1.2.6",
"moment": "^2.24.0",
"pjson": "^1.0.9",
"pluralize": "^8.0.0",
"pm2": "^4.2.3",
"retry": "^0.12.0",
"socket.io-client": "^2.3.0",
"steam-totp": "^2.1.1",
"steam-tradeoffer-manager": "^2.10.1",
"steam-user": "^4.13.2",
"steamcommunity": "^3.41.3",
"steamid": "^1.1.3",
"tf2": "^3.0.1",
"tf2-currencies": "^1.2.4",
"tf2-schema": "^1.3.1",
"tf2-sku": "^1.1.3",
"url": "^0.11.0",
"valid-url": "^1.0.9",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"@types/async": "^3.2.0",
"@types/bluebird-global": "^3.5.12",
"@types/cheerio": "^0.22.17",
"@types/death": "^1.1.0",
"@types/graceful-fs": "^4.1.3",
"@types/pluralize": "0.0.29",
"@types/request": "^2.48.4",
"@types/retry": "^0.12.0",
"@types/semver": "^7.1.0",
"@types/socket.io-client": "^1.4.32",
"@types/valid-url": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-tsdoc": "^0.2.4",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
},
"private": true
}