-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.47 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
{
"name": "@backtest/framework",
"version": "1.1.11",
"description": "Backtesting trading strategies in TypeScript / JavaScript",
"main": "dist/main",
"typings": "dist/main",
"keywords": [
"backtesting",
"backtest",
"finance",
"trading",
"candles",
"indicators",
"multi value",
"multi symbol",
"framework"
],
"scripts": {
"align-db": "npx prisma validate && npx prisma generate && npx prisma db push",
"build:esm": "tsc --target es2018 --outDir esm",
"build:cjs": "tsc --target es2015 --module commonjs --outDir dist",
"prebuild": "rm -rf dist esm",
"build": "npm run build:esm && npm run build:cjs",
"prestart": "npm run build",
"start": "node --env-file=.env dist/main.js",
"dev": "node -r ts-node/register --env-file=.env main.ts",
"predemo-js": "npm run build",
"demo-js": "node --env-file=.env dist/src/demo.js",
"demo": "node -r ts-node/register --env-file=.env src/demo.ts"
},
"files": [
"dist",
"esm",
"prisma/schema.prisma"
],
"pkg": {
"assets": [
"node_modules/**/*"
]
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@prisma/client": "^5.22.0",
"axios": "^1.4.0",
"csvtojson": "^2.0.10",
"glob": "^11.0.0",
"technicalindicators": "^3.1.0"
},
"devDependencies": {
"@types/node": "^20.17.6",
"prisma": "^5.22.0",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=20.0.0"
}
}