-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "steam-hours-boost-simple",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js --ignore data/",
"debug": "nodemon --inspect index.js --ignore data/",
"start": "node index.js",
"lint:check": "eslint . --ignore-path .gitignore --ext .js",
"lint:staged": "lint-staged",
"test": "jest --passWithNoTests",
"prepare": "husky install"
},
"keywords": [],
"author": "Jakub Supa <[email protected]>",
"license": "ISC",
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsonc": "^2.13.0",
"eslint-plugin-prefer-arrow-functions": "^3.2.4",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.4",
"lint-staged": "^12.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"dependencies": {
"betterlogger.js": "^1.0.2",
"qrcode-terminal": "^0.12.0",
"steam-session": "^1.7.2",
"steam-totp": "^2.1.2",
"steam-user": "^4.29.3",
"steamcommunity": "^3.48.2"
}
}