-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.63 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
{
"name": "query-box",
"private": true,
"version": "0.1.4",
"scripts": {
"start": " pnpm turbo generate-types && pnpm tauri dev",
"generate-types": "node scripts/generate.js",
"predev": "pnpm turbo generate-types",
"dev": "cross-env NODE_ENV=development webpack serve --config webpack/config.dev.js",
"build": "cross-env NODE_ENV=production webpack --config webpack/config.prod.js",
"tauri": "tauri",
"lint": "eslint",
"check-types": "tsc --noEmit",
"prepare": "husky"
},
"packageManager": "pnpm@10.12.1",
"engines": {
"node": ">=22.14.0",
"pnpm": "10.12.1"
},
"dependencies": {
"@graphiql/toolkit": "^0.11.3",
"@hookform/resolvers": "^5.1.1",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-menubar": "^1.1.15",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-query": "^5.80.7",
"@tanstack/react-table": "^8.21.3",
"@tauri-apps/api": "^2.5.0",
"@tauri-apps/plugin-fs": "^2.3.0",
"@tauri-apps/plugin-log": "~2.5.0",
"@tauri-apps/plugin-opener": "^2.2.7",
"@tauri-apps/plugin-os": "^2.2.1",
"@tauri-apps/plugin-process": "~2.2.2",
"@tauri-apps/plugin-updater": "~2.8.1",
"@types/markdown-it": "^14.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "1.1.1",
"graphql": "^16.11.0",
"graphql-ws": "^6.0.5",
"immutable": "^5.1.3",
"lodash": "^4.17.21",
"lucide-react": "^0.525.0",
"markdown-it": "^14.1.0",
"monaco-editor": "0.52.2",
"monaco-graphql": "^1.7.0",
"nanoid": "^5.1.5",
"next-themes": "^0.4.6",
"prettier": "^3.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.57.0",
"react-resizable-panels": "^3.0.2",
"react-split": "^2.0.14",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.10",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.25.63",
"zustand": "^5.0.5"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.28.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.0",
"@tailwindcss/postcss": "^4.1.10",
"@tanstack/eslint-plugin-query": "^5.78.0",
"@tauri-apps/cli": "^2.5.0",
"@types/lodash": "^4.17.17",
"@types/node": "^24.0.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"babel-loader": "^10.0.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-react": "^7.37.5",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"globals": "^16.2.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"mini-css-extract-plugin": "^2.9.2",
"monaco-editor-webpack-plugin": "^7.1.0",
"postcss-loader": "^8.1.1",
"react-refresh": "^0.17.0",
"style-loader": "^4.0.0",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"webpackbar": "^7.0.0"
}
}