-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.81 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.81 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
106
107
108
109
110
111
112
113
{
"name": "my-v0-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run optimize:images && next build && rm -f out/*.txt && node scripts/extract-css.js",
"build:local": "npm run optimize:images && LOCAL_BUILD=true next build && rm -f out/*.txt && mv out/index.html \"out/车卡器入口.html\" && node scripts/extract-css.js",
"extract-css": "node scripts/extract-css.js",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"optimize:images": "node scripts/optimize-images.js"
},
"dependencies": {
"@dnd-kit/core": "latest",
"@dnd-kit/sortable": "latest",
"@dnd-kit/utilities": "latest",
"@hookform/resolvers": "^3.9.1",
"@radix-ui/react-accordion": "latest",
"@radix-ui/react-alert-dialog": "latest",
"@radix-ui/react-aspect-ratio": "latest",
"@radix-ui/react-avatar": "latest",
"@radix-ui/react-checkbox": "latest",
"@radix-ui/react-collapsible": "latest",
"@radix-ui/react-context-menu": "latest",
"@radix-ui/react-dialog": "latest",
"@radix-ui/react-dropdown-menu": "latest",
"@radix-ui/react-hover-card": "latest",
"@radix-ui/react-label": "latest",
"@radix-ui/react-menubar": "latest",
"@radix-ui/react-navigation-menu": "latest",
"@radix-ui/react-popover": "latest",
"@radix-ui/react-progress": "latest",
"@radix-ui/react-radio-group": "latest",
"@radix-ui/react-scroll-area": "latest",
"@radix-ui/react-select": "latest",
"@radix-ui/react-separator": "latest",
"@radix-ui/react-slider": "latest",
"@radix-ui/react-slot": "latest",
"@radix-ui/react-switch": "latest",
"@radix-ui/react-tabs": "latest",
"@radix-ui/react-toast": "latest",
"@radix-ui/react-toggle": "latest",
"@radix-ui/react-toggle-group": "latest",
"@radix-ui/react-tooltip": "latest",
"@uiw/react-md-editor": "^4.0.8",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "latest",
"console": "latest",
"date-fns": "4.1.0",
"dexie": "^4.2.0",
"domain": "latest",
"embla-carousel-react": "latest",
"framer-motion": "^12.29.2",
"input-otp": "latest",
"jszip": "^3.10.1",
"lucide-react": "^0.454.0",
"next": "15.2.4",
"next-themes": "latest",
"react": "^19.2.3",
"react-contenteditable": "^3.3.7",
"react-day-picker": "latest",
"react-dom": "^19.2.3",
"react-hook-form": "latest",
"react-image-crop": "^11.0.10",
"react-infinite-scroll-component": "^6.1.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "latest",
"react-textarea-autosize": "^8.5.9",
"recharts": "latest",
"rehype-raw": "^7.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"sharp": "^0.34.3",
"sonner": "latest",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"uuid": "latest",
"vaul": "latest",
"zod": "^3.24.1",
"zustand": "^5.0.6"
},
"devDependencies": {
"@tailwindcss/line-clamp": "^0.4.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jszip": "^3.4.1",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-infinite-scroll-component": "^5.0.0",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.29.0",
"eslint-config-next": "15.3.4",
"happy-dom": "^18.0.1",
"postcss": "^8",
"prettier": "^3.6.2",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.4.17",
"typescript": "^5",
"vitest": "^3.2.4"
}
}