-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.92 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.92 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "fibofinance",
"version": "0.1.0",
"description": "A lightweight, self-hosted asset tracking app with charts and optional AI analysis.",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Emiyaaaaa/fibofinance.git"
},
"bugs": {
"url": "https://github.com/Emiyaaaaa/fibofinance/issues"
},
"homepage": "https://github.com/Emiyaaaaa/fibofinance#readme",
"keywords": [
"finance",
"asset-tracking",
"self-hosted",
"nextjs",
"neon",
"ai"
],
"packageManager": "npm@10.8.2",
"scripts": {
"dev": "next dev --turbopack --port 8081",
"db:sync": "tsx scripts/sync-database.ts",
"db:sync:production": "if [ \"$VERCEL_ENV\" = \"production\" ]; then npm run db:sync; fi",
"build": "npm run db:sync:production && next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx -c .eslintrc.json",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@antv/infographic": "^0.2.17",
"@heroui/react": "^2.8.10",
"@heroui/use-is-mobile": "^2.2.12",
"@internationalized/date": "^3.10.0",
"@neondatabase/serverless": "^0.10.4",
"@number-flow/react": "^0.6.0",
"@react-aria/i18n": "^3.12.13",
"@react-aria/ssr": "3.9.7",
"@react-aria/visually-hidden": "3.8.19",
"@remixicon/react": "^4.6.0",
"@terrastruct/d2": "^0.1.33",
"@vercel/analytics": "^1.5.0",
"@xmldom/xmldom": "^0.9.10",
"ahooks": "^3.9.5",
"ai": "^4.1.54",
"classnames": "^2.5.1",
"clsx": "2.1.1",
"framer-motion": "^12.38.0",
"intl-messageformat": "^10.5.0",
"markstream-react": "^0.0.41",
"motion": "^12.23.12",
"next": "^16.2.4",
"next-intl": "^4.9.1",
"next-themes": "^0.4.4",
"openai": "^4.86.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"recharts": "^2.15.1",
"stream-markdown": "^0.0.15",
"zustand": "^5.0.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "^16.2.4",
"@react-types/shared": "3.25.0",
"@shikijs/markdown-it": "^3.1.0",
"@tailwindcss/postcss": "4.1.11",
"@types/markdown-it": "^14.1.2",
"@types/node": "20.5.7",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-unused-imports": "^4.4.1",
"markdown-it": "13.0.2",
"postcss": "8.4.49",
"prettier": "3.3.3",
"shiki": "^3.23.0",
"tailwind-variants": "0.3.0",
"tailwindcss": "4.1.11",
"tsx": "^4.21.0",
"typescript": "5.6.3"
}
}