-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.3 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
{
"name": "stock-calc",
"version": "1.0.0",
"description": "CLI tool to help you calculate shares in your portfolio",
"main": "src/CliApp/app.ts",
"scripts": {
"cli": "ts-node src/CliApp/app.ts",
"cli:show": "npx ts-node src/CliApp/app.ts show",
"cli:minimum": "npx ts-node src/CliApp/app.ts minimal",
"cli:target": "npx ts-node src/CliApp/app.ts target",
"cli:invest": "npx ts-node src/CliApp/app.ts invest",
"cli:rebalance": "npx ts-node src/CliApp/app.ts rebalance",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "ts-patch install"
},
"author": "",
"license": "ISC",
"dependencies": {
"@commander-js/extra-typings": "^11.0.0",
"chalk": "^4.1.2",
"class-validator": "^0.14.0",
"decimal.js": "^10.4.3",
"jsonc-parser": "^3.2.0",
"puppeteer": "^21.1.1",
"tsconfig-paths": "^4.2.0",
"typia": "^5.1.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"ts-node": "^10.9.1",
"ts-patch": "^3.0.2",
"typescript": "^5.2.2"
}
}