fitr
Version:
Financial Investment Tracker
61 lines (60 loc) • 1.48 kB
JSON
{
"name": "fitr",
"version": "0.2.0",
"description": "Financial Investment Tracker",
"main": "dist/index.js",
"type": "module",
"bin": {
"fitr": "./bin/run"
},
"scripts": {
"build": "webpack",
"start": "node dist/index.js",
"dev": "ts-node --esm src/index.ts",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"lint": "eslint .",
"r": "npm run build && fitr -D -v",
"prepublishOnly": "npm run build"
},
"keywords": [
"portfolio",
"investments",
"finance",
"cli"
],
"author": "Adrian Moldovan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adimoldovan/fitr"
},
"dependencies": {
"@types/inquirer": "^9.0.7",
"axios": "^1.8.2",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"date-fns": "^2.30.0",
"inquirer": "^8.2.5",
"node-fetch": "^3.3.2",
"table": "^6.8.1",
"yahoo-finance2": "^2.13.3"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.57.1",
"globals": "^16.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"typescript-eslint": "^8.25.0",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
}
}