-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
30 lines (30 loc) · 1.71 KB
/
deno.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
{
"lock": false,
"tasks": {
"check": "deno fmt --check && deno lint && deno check **/*.ts",
"community": "deno run --allow-read=testdata,../etoro-data/data src/repository/community_bin.ts ../etoro-data/data",
"profile": "deno run --allow-read=testdata,../etoro-data/data --v8-flags=--prof src/timing/optimize_bin.ts testdata",
"train": "deno run --allow-read=testdata,../etoro-data/data --allow-write=testdata,../etoro-data/data src/ranking/train_bin.ts",
"scrape": "deno run --allow-read=../etoro-data/data --allow-write=/workspaces/etoro-data/data --allow-net=www.etoro.com src/repository/refresh_bin.ts ../etoro-data/data",
"test": "deno test --allow-write=tmp,testdata --allow-read=tmp,testdata,src/neural --allow-net=www.etoro.com,jsonplaceholder.typicode.com,github.com,objects.githubusercontent.com,deno.com"
},
"nodeModulesDir": "auto",
"imports": {
"@debut/indicators": "npm:@debut/indicators@^1.3.22",
"@hugoalh/shuffle-array": "jsr:@hugoalh/shuffle-array@^2.0.4",
"@sauber/backtest": "jsr:@sauber/backtest@^1.7.0",
"@sauber/dataframe": "jsr:@sauber/dataframe@^0.6.1",
"@sauber/ml-cli-dashboard": "jsr:@sauber/ml-cli-dashboard@^0.6.1",
"@sauber/neurons": "jsr:@sauber/neurons@^1.2.6",
"@sauber/statistics": "jsr:@sauber/statistics@^0.4.0",
"@sauber/table": "jsr:@sauber/table@^0.1.0",
"@sauber/trading-account": "jsr:@sauber/trading-account@^0.3.1",
"@std/assert": "jsr:@std/assert@^1.0.10",
"@std/datetime": "jsr:@std/datetime@^0.225.2",
"@std/fmt": "jsr:@std/fmt@^1.0.2",
"@std/path": "jsr:@std/path@^1.0.6",
"asciichart": "npm:asciichart@^1.5.25",
"semaphore": "https://deno.land/x/semaphore@v1.1.2/semaphore.ts",
"📚/": "./src/"
}
}