-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "backtestjs",
"version": "1.0.0",
"description": "Free and easy way to write backtest trading strategies in TS / JS with built in candle data retrieval",
"main": "dist/main.js",
"keywords": ["backtest", "finance", "trading", "download historical candle data", "indicators", "multi value", "multi symbol"],
"scripts": {
"start": "npx ts-node src/main.ts",
"dev": "npx ts-node src/main.ts",
"build": "tsc || true",
"makejs": "tsc || true",
"js": "node dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"postinstall": "npm run build"
},
"bin": {
"backtestjs": "dist/main.js"
},
"files": [
"dist",
"prisma/schema.prisma"
],
"pkg": {
"assets": [
"node_modules/**/*"
]
},
"author": "Andrew Baronick",
"license": "Apache-2.0",
"dependencies": {
"@prisma/client": "^5.0.0",
"axios": "^1.4.0",
"chalk": "^4.1.0",
"cli-progress": "^3.12.0",
"csvtojson": "^2.0.10",
"express": "^4.18.2",
"fuzzy": "^0.1.3",
"inquirer": "^8.2.5",
"inquirer-autocomplete-prompt": "^2.0.0",
"inquirer-date-prompt": "^2.0.1",
"lightweight-charts": "^4.0.1",
"tulind": "^0.8.20"
},
"devDependencies": {
"@types/cli-progress": "^3.11.5",
"@types/express": "^4.17.17",
"@types/inquirer": "^9.0.3",
"@types/inquirer-autocomplete-prompt": "^3.0.0",
"@types/node": "^20.4.2",
"prisma": "^5.0.0",
"typescript": "^4.5.4"
}
}