-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.13 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.13 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
{
"name": "sqlite-online",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"build:pages": "tsc -b && vite build --mode pages",
"preview:pages": "vite preview --mode pages",
"deploy": "gh-pages -d dist",
"lint": "eslint .",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"format:check": "prettier --check 'src/**/*.{js,jsx,ts,tsx}'",
"knip": "knip"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/lang-sql": "^6.8.0",
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@tailwindcss/vite": "^4.0.9",
"@types/lodash": "^4.17.16",
"@uiw/codemirror-theme-darcula": "^4.23.10",
"@uiw/react-codemirror": "^4.23.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"gh-pages": "^6.3.0",
"lodash": "^4.17.21",
"lucide-react": "^0.476.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-resizable-panels": "^2.1.7",
"react-virtualized-auto-sizer": "^1.0.26",
"react-window": "^1.8.11",
"sonner": "^2.0.1",
"sql.js": "^1.13.0",
"tailwind-merge": "^3.2.0",
"vite-plugin-compression": "^0.5.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/node": "^22.13.10",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.0.4",
"@types/react-window": "^1.8.8",
"@types/sql.js": "^1.4.9",
"@vitejs/plugin-react": "^4.3.4",
"babel-plugin-react-compiler": "^19.0.0-beta-e993439-20250328",
"eslint": "^9.21.0",
"eslint-plugin-react-compiler": "^19.0.0-beta-e993439-20250328",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"knip": "^5.52.0",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.3.5"
}
}