forked from afadil/wealthfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.59 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.59 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
97
98
99
100
101
102
103
104
105
{
"name": "wealthfolio-app",
"private": true,
"version": "2.0.0",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "vite",
"dev:web": "node scripts/dev-web.mjs",
"build": "pnpm run build:types && tsc && vite build && pnpm -r build",
"build:types": "pnpm -r run build:types",
"preview": "vite preview",
"tauri": "tauri",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint . && pnpm -r lint",
"lint:fix": "eslint . --fix && pnpm -r lint:fix",
"lint:quiet": "eslint . --quiet && pnpm -r lint:quiet",
"lint:root": "eslint .",
"format": "prettier --write . && pnpm -r format",
"format:check": "prettier --check . && pnpm -r format:check",
"tsc": "tsc -b",
"type-check": "tsc --noEmit && pnpm -r type-check",
"type-check:root": "tsc --noEmit",
"check": "pnpm format:check && pnpm lint:quiet && pnpm type-check",
"publish:sdk": "cd packages/addon-sdk && npm publish --access public",
"publish:ui": "cd packages/ui && npm publish --access public",
"publish:addon-dev-tools": "cd packages/addon-dev-tools && npm publish --access public",
"addon:create": "cd packages/addon-dev-tools && node cli.js create",
"addon:dev": "cd packages/addon-dev-tools && node dev-server.js"
},
"dependencies": {
"@fontsource/ibm-plex-mono": "^5.2.6",
"@hookform/resolvers": "^5.2.2",
"@internationalized/date": "^3.9.0",
"@number-flow/react": "^0.5.10",
"@tailwindcss/vite": "^4.1.13",
"@tanstack/react-query": "^5.90.5",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.12",
"@tauri-apps/api": "^2.8.0",
"@tauri-apps/plugin-barcode-scanner": "~2.4.0",
"@tauri-apps/plugin-dialog": "~2.4.0",
"@tauri-apps/plugin-fs": "~2.4.2",
"@tauri-apps/plugin-haptics": "~2.0.0",
"@tauri-apps/plugin-log": "~2.7.0",
"@tauri-apps/plugin-shell": "~2.3.1",
"@tauri-apps/plugin-updater": "~2.9.0",
"@tauri-apps/plugin-window-state": "~2.4.0",
"@wealthfolio/ui": "workspace:*",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"lodash": "^4.17.21",
"lucide-react": "^0.544.0",
"motion": "^12.23.22",
"papaparse": "^5.5.3",
"react": "^19.1.1",
"react-day-picker": "^9.10.0",
"react-dom": "^19.1.1",
"react-hook-form": "^7.62.0",
"react-qr-code": "^2.0.18",
"react-router-dom": "^7.9.1",
"recharts": "^3.3.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"use-debounce": "^10.0.6",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@eslint/js": "^9.35.0",
"@tanstack/eslint-plugin-query": "^5.89.0",
"@tauri-apps/cli": "^2.8.4",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/lodash": "^4.17.20",
"@types/node": "^24.5.1",
"@types/papaparse": "^5.3.16",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.2",
"autoprefixer": "^10.4.21",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.4.0",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.13",
"tw-animate-css": "^1.3.8",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0",
"vite": "^7.1.5",
"vitest": "^3.2.4"
}
}