40 lines
1.2 KiB
JSON
40 lines
1.2 KiB
JSON
{
|
|
"name": "market-screener",
|
|
"version": "2.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "tsx bin/screen.ts",
|
|
"server": "tsx bin/server.ts",
|
|
"dev": "concurrently -n api,ui -c cyan,magenta \"tsx bin/server.ts\" \"npm run dev --prefix ui\"",
|
|
"ui:install": "npm install --prefix ui --legacy-peer-deps",
|
|
"finance": "tsx bin/finance.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "tsx --test --test-reporter=./scripts/summary-reporter.js tests/*.test.js",
|
|
"test:watch": "tsx --test --watch --test-reporter=spec tests/*.test.js",
|
|
"format": "prettier --write \"server/**/*.ts\" \"bin/**/*.ts\" \"tests/**/*.js\"",
|
|
"format:check": "prettier --check \"server/**/*.ts\" \"bin/**/*.ts\" \"tests/**/*.js\"",
|
|
"prepare": "husky"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,js}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/sdk": "^0.100.1",
|
|
"@fastify/cors": "^11.2.0",
|
|
"dotenv": "^16.0.0",
|
|
"fastify": "^5.8.5",
|
|
"yahoo-finance2": "^3.15.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"concurrently": "^10.0.3",
|
|
"husky": "^9.0.0",
|
|
"lint-staged": "^15.0.0",
|
|
"prettier": "^3.0.0",
|
|
"tsx": "^4.0.0",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|