-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
37 lines (37 loc) · 952 Bytes
/
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
{
"name": "export-to-ghostfolio",
"version": "0.19.1",
"type": "module",
"description": "Convert multiple broker exports to Ghostfolio import",
"scripts": {
"start": "tsx ./src/manual.ts",
"watch": "tsx ./src/watcher.ts",
"test": "jest --coverage"
},
"author": "Dick Wolff",
"repository": {
"url": "https://github.com/dickwolff/Trading-212-to-Ghostfolio"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/cacache": "^17.0.2",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"dependencies": {
"@types/cli-progress": "^3.11.6",
"cacache": "^19.0.1",
"chokidar": "^4.0.1",
"cli-progress": "^3.12.0",
"closest-match": "^1.3.3",
"csv-parse": "^5.5.6",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"yahoo-finance2": "^2.12.4"
}
}