-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 972 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 972 Bytes
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
{
"name": "veloflow",
"version": "0.0.0",
"private": true,
"workspaces": [
"web/*",
"packages/*"
],
"scripts": {
"dev": "cd web && pnpm tauri dev",
"storybook": "cd packages/ui && pnpm storybook",
"build-storybook": "cd packages/ui && storybook build",
"typecheck": "cd web && pnpm typecheck --noEmit && cd packages/ui && pnpm typecheck --noEmit",
"build": "cd web && pnpm tauri:build"
},
"dependencies": {
"@tailwindcss/postcss": "4.1.16",
"@types/node": "24.9.2",
"autoprefixer": "10.4.20",
"class-variance-authority": "0.7.0",
"postcss": "8.4.47",
"postcss-import": "16.1.0",
"tailwindcss": "4.1.16",
"vite-tsconfig-paths": "5.1.4",
"react": "19.1.0",
"react-dom": "19.1.0",
"antd": "5.28.1"
},
"devDependencies": {
"@vitejs/plugin-react": "5.1.0",
"@types/react": "19.1.8",
"vite": "7.0.4"
},
"engines": {
"pnpm": ">=10.14.0",
"node": ">=22.18.0"
}
}