-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.66 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
{
"name": "@backtest/command-line",
"version": "1.1.9",
"description": "This project is a CLI build around Backtest, a library for trading developers",
"main": "dist/main.js",
"keywords": [
"backtesting",
"backtest",
"finance",
"trading",
"candles",
"indicators",
"multi value",
"multi symbol",
"comamnd line",
"cli"
],
"scripts": {
"align-db": "npx prisma validate && npx prisma generate && npx prisma db push",
"build": "tsc",
"prejs": "npm run build",
"start": "cd dist && node --env-file=../.env main.js",
"dev": "node -r ts-node/register --env-file=.env src/main.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"postinstall": "npm run build"
},
"bin": {
"backtest": "dist/main.js"
},
"prisma": {
"schema": "./node_modules/@backtest/framework/prisma/schema.prisma"
},
"files": [
"dist"
],
"pkg": {
"assets": [
"node_modules/**/*"
]
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@backtest/framework": "^1.1.13",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"express": "^4.21.1",
"fuzzy": "^0.1.3",
"inquirer": "^8.2.6",
"inquirer-autocomplete-prompt": "^2.0.1",
"inquirer-date-prompt": "^2.0.1",
"lightweight-charts": "^4.2.1",
"technicalindicators": "^3.1.0"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/express": "^5.0.0",
"@types/inquirer": "^9.0.7",
"@types/inquirer-autocomplete-prompt": "^3.0.3",
"@types/node": "^22.10.1",
"prisma": "^5.22.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}