-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 2.5 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
{
"name": "surebet",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start2": "node dist/index.js --trace-warnings --max-old-space-size=4096",
"start": "npm run build && node dist/index.js --trace-warnings --max-old-space-size=4096",
"clean": "rm -r screenshots/*",
"build": "tsc",
"watch": "concurrently \"tsc -w\" \"nodemon dist/index.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"pretty-quick": "pretty-quick"
},
"simple-git-hooks": {
"pre-commit": "npx pretty-quick --staged"
},
"_moduleAliases": {
"@bigbola": "dist/app/bookies/bigbola",
"@betway": "dist/app/bookies/betway",
"@bwin": "dist/app/bookies/bwin",
"@betfair": "dist/app/bookies/betfair",
"@betcris": "dist/app/bookies/betcris",
"@betinasia": "dist/app/bookies/betinasia",
"@bookmaker": "dist/app/bookies/bookmaker",
"@bet365": "dist/app/bookies/bet365",
"@caliente": "dist/app/bookies/caliente",
"@cloudbet": "dist/app/bookies/cloudbet",
"@dafabet": "dist/app/bookies/dafabet",
"@playdoit": "dist/app/bookies/playdoit",
"@stake": "dist/app/bookies/stake",
"@matchbook": "dist/app/bookies/matchbook",
"@pinnacle": "dist/app/bookies/pinnacle",
"@1xbet": "dist/app/bookies/1xbet",
"@melbet": "dist/app/bookies/melbet",
"@models": "dist/app/models",
"@utils": "dist/app/utils",
"@algorithms": "dist/app/algorithms",
"@browser": "dist/app/browser",
"@money": "dist/app/money",
"@accounts": "dist/app/accounts",
"@genetics": "dist/app/genetics",
"@bookies": "dist/app/bookies",
"@arbers": "dist/app/arbers",
"@broker": "dist/app/broker"
},
"author": "Daniel Cardenas",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielcardeenas/surebet/issues"
},
"devDependencies": {
"@types/node": "22.1.0",
"@types/ws": "8.5.12",
"concurrently": "8.2.2",
"module-alias": "2.2.3",
"nodemon": "3.1.4",
"prettier": "3.3.3",
"pretty-quick": "^4.0.0",
"simple-git-hooks": "^2.11.1",
"typescript": "5.5.4"
},
"dependencies": {
"@nut-tree-fork/nut-js": "^4.2.2",
"axios": "^1.7.3",
"cashify": "2.5.0",
"chrome-launcher": "0.14.1",
"fuzzball": "2.1.2",
"ghost-cursor": "1.3.0",
"global": "4.4.0",
"node-notifier": "10.0.1",
"puppeteer": "22.15.0",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.1",
"tsyringe": "4.8.0",
"uuidv4": "6.2.13",
"ws": "^7.5.10"
}
}