-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.37 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
{
"name": "ms-bing-rewards",
"version": "0.2.1",
"description": "Automated runner for Bing / Microsoft Rewards",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "run-p watch-node watch-typescript",
"lint": "tsc --noEmit && eslint 'src/*/**/*.{js,ts,tsx}' --fix",
"start:desktop": "node dist/index.js",
"start:mobile": "node dist/mobile.js",
"start": "NODE_ENV=production node .",
"test": "echo \"Error: no test specified\" && exit 1",
"watch-node": "nodemon ./dist/index.js",
"watch-typescript": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blakek/ms-bing-rewards.git"
},
"author": "Blake Knight <[email protected]> (https://blakek.me/)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/blakek/ms-bing-rewards/issues"
},
"homepage": "https://github.com/blakek/ms-bing-rewards#readme",
"dependencies": {
"puppeteer": "^1.20.0"
},
"devDependencies": {
"@types/node": "^12.11.1",
"@types/puppeteer": "^1.9.0",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"eslint": "^6.5.1",
"eslint-config-gsandf": "^1.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"typescript": "^3.6.4"
}
}