-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.38 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.38 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
{
"name": "workgrid-studio",
"private": true,
"version": "0.2.0",
"type": "module",
"scripts": {
"dev": "vite",
"prebuild": "pnpm version:sync && pnpm version:check",
"build": "tsc && vite build",
"lint": "eslint .",
"prepare": "husky",
"bundle:analyze": "tsc && vite build --mode analyze",
"preview": "vite preview",
"tauri": "tauri",
"version:current": "node scripts/versioning.mjs current",
"version:sync": "node scripts/versioning.mjs sync",
"version:check": "node scripts/versioning.mjs check",
"version:bump:patch": "node scripts/versioning.mjs bump patch",
"version:bump:minor": "node scripts/versioning.mjs bump minor",
"version:bump:major": "node scripts/versioning.mjs bump major",
"changelog:unreleased": "node scripts/changelog.mjs get-unreleased",
"changelog:promote": "node scripts/changelog.mjs promote"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@tanstack/react-virtual": "^3.13.23",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-fs": "^2.5.0",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"@tauri-apps/plugin-window-state": "^2.4.1",
"clsx": "^2.1.1",
"exceljs": "^4.4.0",
"lucide-react": "^0.577.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-querybuilder": "^8.14.4",
"sql-formatter": "^15.7.3",
"tailwind-merge": "^3.5.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/postcss": "^4.2.2",
"@tauri-apps/cli": "^2.10.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.2.0",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"rollup-plugin-visualizer": "^7.0.1",
"tailwindcss": "^4.2.2",
"typescript": "~5.9.3",
"vite": "^8.0.4"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint-plugin-react-hooks>eslint": "^10.0.0"
}
}
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}