-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.48 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
{
"name": "mamasql",
"private": true,
"version": "0.1.0",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"bridge": "node server/bridge.mjs",
"dev:all": "concurrently -n web,bridge -c blue,green \"vite\" \"node server/bridge.mjs\"",
"start": "concurrently -n web,bridge -c blue,green \"vite --port 5001 --strictPort\" \"node server/bridge.mjs\"",
"seed:demo": "node scripts/seed-demo.mjs",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"screenshot": "node scripts/screenshot.mjs"
},
"dependencies": {
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.43.1",
"@mantine/core": "^8.3.18",
"@mantine/hooks": "^8.3.18",
"@tabler/icons-react": "^3.44.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"codemirror": "^6.0.2",
"framer-motion": "^12.41.0",
"mysql2": "^3.22.5",
"pg": "^8.22.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sql.js": "^1.14.1",
"zustand": "^5.0.14"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/sql.js": "^1.4.11",
"@vitejs/plugin-react": "^4.6.0",
"concurrently": "^9.2.3",
"playwright-core": "^1.61.0",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vitest": "^4.1.9"
},
"overrides": {
"esbuild": "^0.28.1"
}
}