-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.79 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
{
"name": "trading-journal",
"version": "1.0.0",
"description": "A web-based trading journal application for systematic trade documentation and performance analysis",
"type": "module",
"author": "Trading Journal Team",
"license": "MIT",
"homepage": "https://github.com/tradingjournal/app",
"repository": {
"type": "git",
"url": "https://github.com/tradingjournal/app.git"
},
"keywords": [
"trading",
"journal",
"finance",
"analytics",
"web",
"spa"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"deploy": "npm run build",
"test": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint src --ext .ts,.tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write 'src/**/*.{ts,tsx,css,md}'",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hookform/resolvers": "^5.2.0",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slider": "^1.3.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@tailwindcss/postcss": "^4.1.11",
"@tiptap/extension-character-count": "^3.0.7",
"@tiptap/extension-placeholder": "^3.0.7",
"@tiptap/react": "^3.0.7",
"@tiptap/starter-kit": "^3.0.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.23.12",
"fuse.js": "^7.1.0",
"lucide-react": "^0.530.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.61.1",
"react-hot-toast": "^2.5.2",
"react-router-dom": "^7.7.1",
"react-window": "^1.8.11",
"react-window-infinite-loader": "^1.0.10",
"recharts": "^3.1.0",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.3.6",
"use-debounce": "^10.0.5",
"zod": "^4.0.10",
"zustand": "^5.0.6"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.1.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.32.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.3.0",
"jsdom": "^26.1.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3",
"vite": "^7.0.6",
"vitest": "^3.2.4"
}
}