-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.46 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
{
"name": "forecone",
"version": "0.1.0",
"private": true,
"description": "Open-source stock analysis with an interactive bull/base/bear valuation workbench — a price target for every year, not just the finish line.",
"license": "MIT",
"keywords": [
"stocks",
"finance",
"investing",
"valuation",
"dcf",
"scenario-analysis",
"stock-screener",
"nextjs",
"react",
"fundamental-analysis"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"snapshot:demo": "node scripts/snapshot-demo.mjs",
"validate:polygon": "node scripts/check-polygon.mjs",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push"
},
"dependencies": {
"@tanstack/react-query": "^5.100.14",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"lightweight-charts": "^5.2.0",
"lucide-react": "^1.17.0",
"next": "16.2.6",
"postgres": "^3.4.9",
"react": "19.2.4",
"react-dom": "19.2.4",
"recharts": "^3.8.1",
"shadcn": "^4.9.0",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"yahoo-finance2": "^3.15.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"tailwindcss": "^4",
"typescript": "^5"
}
}