-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 2.57 KB
/
package.json
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
{
"name": "sqlite-viewer",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"format:check": "prettier --check 'src/**/*.{js,jsx,ts,tsx}'",
"gh:deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "https://github.com/vwh/sqlite-viewer.git"
},
"author": "vwh",
"license": "MIT",
"dependencies": {
"@codemirror/autocomplete": "^6.18.4",
"@codemirror/lang-sql": "^6.8.0",
"@million/lint": "^1.0.14",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-alert-dialog": "^1.1.4",
"@radix-ui/react-hover-card": "^1.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-radio-group": "^1.2.2",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@uiw/codemirror-theme-nord": "^4.23.7",
"@uiw/react-codemirror": "^4.23.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"file-saver": "^2.0.5",
"lucide-react": "^0.424.0",
"million": "^3.1.11",
"prettier-plugin-tailwindcss": "^0.6.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.5",
"sonner": "^1.7.1",
"sql-formatter": "^15.4.8",
"sql.js": "^1.12.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^0.9.9",
"zustand": "^4.5.5"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^6.0.0",
"@types/file-saver": "^2.0.7",
"@types/node": "^22.10.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/sql.js": "^1.4.9",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitejs/plugin-legacy": "^5.4.3",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.16",
"gh-pages": "^6.3.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-dynamic-import": "^1.6.0",
"vite-plugin-imagemin": "^0.4.6",
"vite-plugin-pwa": "^0.20.5",
"vite-tsconfig-paths": "^4.3.2"
},
"packageManager": "[email protected]"
}