-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.65 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.65 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": "querypad",
"version": "0.5.0",
"private": true,
"description": "Browser-native SQL playground powered by DuckDB-Wasm",
"author": "QueryPad Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vericontext/querypad.git"
},
"homepage": "https://querypad.io",
"keywords": [
"sql",
"duckdb",
"csv",
"parquet",
"json",
"analytics",
"data-analysis",
"browser"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"partykit:dev": "partykit dev",
"partykit:deploy": "partykit deploy",
"postinstall": "node scripts/copy-duckdb-wasm.mjs",
"test": "playwright test",
"test:ui": "playwright test --ui"
},
"dependencies": {
"@dagrejs/dagre": "^2.0.4",
"@duckdb/duckdb-wasm": "^1.33.1-dev20.0",
"@monaco-editor/react": "^4.7.0",
"@tanstack/react-virtual": "^3.13.23",
"@vercel/analytics": "^2.0.1",
"@xyflow/react": "^12.10.1",
"idb-keyval": "^6.2.2",
"next": "16.2.0",
"pako": "^2.1.0",
"partykit": "^0.0.115",
"react": "19.2.4",
"react-dom": "19.2.4",
"recharts": "^3.8.0",
"xlsx": "^0.18.5",
"y-monaco": "^0.1.6",
"y-partykit": "^0.0.33",
"yjs": "^13.6.30",
"zustand": "^5.0.12"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@types/dagre": "^0.7.54",
"@types/node": "^20",
"@types/pako": "^2.0.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}