-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.5 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 4.5 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
114
115
116
117
{
"name": "dbpaw",
"repository": {
"type": "git",
"url": "git+https://github.com/codeErrorSleep/dbpaw.git"
},
"private": true,
"version": "0.5.3",
"type": "module",
"scripts": {
"dev": "vite",
"dev:mock": "VITE_USE_MOCK=true vite",
"build": "bun run typecheck && vite build",
"typecheck": "tsc -b",
"lint:web": "prettier --check \"package.json\" \"package-lock.json\" \"tsconfig*.json\" \"vite.config.ts\" \"eslint.config.js\" \"src-tauri/tauri.conf.json\" \"src-tauri/capabilities/**/*.json\" \".github/workflows/*.{yml,yaml}\" && eslint \"src/**/*.{ts,tsx}\" \"vite.config.ts\" \"test-setup.ts\"",
"lint:rust": "bun run rust:check",
"lint": "bun run lint:web",
"rust:check": "cargo check --manifest-path src-tauri/Cargo.toml",
"test:unit": "bash ./scripts/test-unit.sh",
"test:service": "bash ./scripts/test-service.sh",
"test:rust:unit": "cargo test --manifest-path src-tauri/Cargo.toml --lib",
"test:integration": "bash ./scripts/test-integration.sh",
"test:smoke": "bun run typecheck && bun run lint && bun run rust:check && bun run test:unit && bun run test:service && bun run test:rust:unit",
"test:ci": "bun run typecheck && bun run lint && bun run test:unit && bun run test:service && bun run rust:check && bun run test:rust:unit",
"test:all": "bun run test:unit && bun run test:service && bun run test:rust:unit && bun run test:integration",
"preview": "vite preview",
"tauri": "tauri",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css}\"",
"website:dev": "cd website && bun run start",
"website:build": "cd website && bun run build"
},
"dependencies": {
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-accordion": "1.2.3",
"@radix-ui/react-alert-dialog": "1.1.6",
"@radix-ui/react-aspect-ratio": "1.1.2",
"@radix-ui/react-avatar": "1.1.3",
"@radix-ui/react-checkbox": "1.1.4",
"@radix-ui/react-collapsible": "1.1.3",
"@radix-ui/react-context-menu": "2.2.6",
"@radix-ui/react-dialog": "1.1.6",
"@radix-ui/react-dropdown-menu": "2.1.6",
"@radix-ui/react-hover-card": "1.1.6",
"@radix-ui/react-label": "2.1.2",
"@radix-ui/react-menubar": "1.1.6",
"@radix-ui/react-navigation-menu": "1.2.5",
"@radix-ui/react-popover": "1.1.6",
"@radix-ui/react-progress": "1.1.2",
"@radix-ui/react-radio-group": "1.2.3",
"@radix-ui/react-scroll-area": "1.2.3",
"@radix-ui/react-select": "2.1.6",
"@radix-ui/react-separator": "1.1.2",
"@radix-ui/react-slider": "1.2.3",
"@radix-ui/react-slot": "1.1.2",
"@radix-ui/react-switch": "1.1.3",
"@radix-ui/react-tabs": "1.1.3",
"@radix-ui/react-toggle": "1.1.2",
"@radix-ui/react-toggle-group": "1.1.2",
"@radix-ui/react-tooltip": "1.1.8",
"@tanstack/react-virtual": "^3.14.0",
"@tauri-apps/api": "2.11.0",
"@tauri-apps/plugin-dialog": "2.7.1",
"@tauri-apps/plugin-fs": "2.5.1",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "~2",
"@tauri-apps/plugin-store": "^2.4.2",
"@tauri-apps/plugin-updater": "~2",
"@uiw/react-codemirror": "^4.25.4",
"@xyflow/react": "^12.10.2",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"cmdk": "1.1.1",
"dagre": "^0.8.5",
"date-fns": "3.6.0",
"i18next": "^25.8.14",
"lucide-react": "0.487.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "7.55.0",
"react-i18next": "^16.5.4",
"react-markdown": "^10.1.0",
"react-resizable-panels": "2.1.7",
"remark-gfm": "^4.0.1",
"simple-icons": "16.18.0",
"sonner": "2.0.3",
"sql-formatter": "^15.7.0",
"tailwind-merge": "3.2.0",
"tw-animate-css": "1.3.8"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@tailwindcss/vite": "4.1.12",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/dagre": "^0.7.54",
"@types/node": "^24.5.2",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^16.5.0",
"happy-dom": "^20.9.0",
"prettier": "^3.8.1",
"rollup-plugin-visualizer": "^7.0.1",
"tailwindcss": "4.1.12",
"typescript": "~5.8.3",
"typescript-eslint": "^8.60.1",
"vite": "^7.3.2"
}
}