-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (69 loc) · 2.77 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
{
"name": "statsnerdv2",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.195",
"@types/node": "^20.2.5",
"@types/pg": "^8.10.2",
"@types/puppeteer": "^7.0.4",
"@types/uuid": "^9.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"scripts": {
"tsc": "tsc",
"build-ts": "npx tsc",
"copy-migrations": "cp -r src/db/postgres/migrations build/src/db/postgres/migrations",
"migrate": "npm run copy-migrations && node build/src/db/postgres/migration_runner.js",
"fly": "ts-node build/src/experiments/aviator/runner/init_index.js",
"fly-slim": "ts-node build/src/experiments/aviator/runner/init_slim_index.js",
"fly-pre-process": "ts-node src/experiments/aviator/pre_process.ts && cp train.csv ~/PythonDataProjects/Aviator/ && cp test.csv ~/PythonDataProjects/Aviator/",
"fly-pre-process-historical": "ts-node src/experiments/aviator/pre_process_historical.ts && cp train.csv ~/PythonDataProjects/Aviator/ && cp test.csv ~/PythonDataProjects/Aviator/",
"fly-pre-process-historical-simplified": "ts-node src/experiments/aviator/pre_process_historical_simplified.ts && cp train_simplified.csv ~/PythonDataProjects/Aviator/ && cp test_simplified.csv ~/PythonDataProjects/Aviator/",
"start-fsm": "ts-node src/experiments/aviator/agent/live/runner.ts",
"scrape-betika": "node build/src/scrapping/betika/auto_scrapper/betika_bet_provider.js --trace-warnings",
"start-server": "node build/src/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@slack/webhook": "^6.1.0",
"@tensorflow/tfjs": "^4.7.0",
"@xstate/fsm": "^2.1.0",
"average-rating": "^2.0.4",
"axios": "^1.4.0",
"chalk": "^4.1.2",
"chance": "^1.1.11",
"cheerio": "^1.0.0-rc.12",
"combinatorial-generators": "^1.1.2",
"csv-parser": "^3.0.0",
"csv-stringify": "^6.4.0",
"dannjs": "^2.4.1-e",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"json-rules-engine": "^6.4.0",
"limdu": "^1.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"mongodb": "^5.6.0",
"pg": "^8.11.0",
"postgres-migrations": "^5.3.0",
"puppeteer": "^20.9.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"puppeteer-screen-recorder": "^2.1.2",
"redis": "^4.6.7",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"simple-statistics": "^7.8.3",
"tslog": "^4.8.2",
"typeorm": "^0.3.16",
"uuid": "^9.0.0",
"xvfb": "^0.4.0"
}
}