-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.04 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.04 KB
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
71
72
73
74
75
76
77
78
79
{
"name": "trade-sim",
"version": "0.1.0",
"description": "Stock trade simulation and portfolio performance analysis",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"trade-sim": "./dist/cli.js"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:studio": "prisma studio"
},
"keywords": [
"trading",
"simulation",
"portfolio",
"backtesting",
"stocks",
"nordnet"
],
"author": "Emil Lysgaard",
"license": "MIT",
"dependencies": {
"@prisma/client": "^6.2.0",
"axios": "^1.7.9",
"canvas": "^2.11.2",
"chalk": "^5.4.1",
"chart.js": "^4.4.8",
"chartjs-node-canvas": "^4.1.6",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"lodash-es": "^4.17.21",
"nordnet-ts": "github:eLysgaard/nordnet-ts",
"ora": "^8.1.1",
"papaparse": "^5.4.1",
"pg": "^8.13.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"uuid": "^11.0.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.2",
"@types/papaparse": "^5.3.15",
"@types/pg": "^8.11.10",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"prisma": "^6.2.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
}
}