-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "quantamental-portfolio-dashboard",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"market-data": "node server/market-data.js",
"import-data": "tsx scripts/import-data.ts",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@polygon.io/client-js": "^7.3.2",
"@supabase/supabase-js": "^2.39.7",
"@tanstack/react-query": "^5.24.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cors": "^2.8.5",
"csv-parse": "^5.5.3",
"date-fns": "^3.3.1",
"express": "^4.18.2",
"lucide-react": "^0.344.0",
"markdown-it": "^14.0.0",
"mathjs": "^12.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.12.1",
"tailwind-merge": "^2.2.1",
"tsx": "^4.7.1",
"yahoo-finance2": "^2.9.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.11.20",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.3.1",
"autoprefixer": "^10.4.18",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"msw": "^2.2.1",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vitest": "^1.3.1"
}
}