-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.49 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
{
"name": "tf2-donation",
"version": "0.0.1",
"description": "Donation bot for Team Fortress 2",
"author": "Marc Mogdanz",
"license": "UNLICENSED",
"private": true,
"scripts": {
"start": "node dist/main.js",
"dev": "npm run build && npm run start",
"watch": "babel --watch src/ --out-dir dist/ --extensions '.ts,.tsx'",
"build": "babel src/ --out-dir dist/ --extensions '.ts,.tsx'",
"tsc": "tsc",
"lint": "tslint -c tslint.json src/*"
},
"dependencies": {
"graceful-fs": "^4.2.3",
"steam-totp": "^2.1.1",
"steam-tradeoffer-manager": "^2.10.1",
"steam-user": "^4.12.4",
"steamcommunity": "^3.41.3",
"tf2": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-numeric-separator": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@types/graceful-fs": "^4.1.3",
"@types/node": "^12.7.5",
"@types/steam-totp": "^2.1.0",
"prettier": "^1.18.2",
"ts-node": "^8.5.4",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.7.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarcMogdanz/tf2-donation.git"
},
"bugs": {
"url": "https://github.com/MarcMogdanz/tf2-donation/issues"
},
"homepage": "https://github.com/MarcMogdanz/tf2-donation#readme"
}