-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2 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
{
"name": "@aszenz/data-explorer",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "prettier --check . && tsc --noEmit && eslint .",
"format": "prettier --write .",
"test": "playwright test",
"vitest": "vitest",
"preview": "vite preview --port 3000",
"start": "npm run build && npm run preview"
},
"dependencies": {
"@duckdb/duckdb-wasm": "1.33.1-dev19.0",
"@malloydata/db-duckdb": "^0.0.347",
"@malloydata/malloy": "^0.0.347",
"@malloydata/malloy-explorer": "^0.0.338-dev260215172810",
"@malloydata/malloy-interfaces": "^0.0.347",
"@malloydata/malloy-query-builder": "^0.0.347",
"@malloydata/render": "^0.0.347",
"@malloydata/syntax-highlight": "^0.0.347",
"@shikijs/core": "^3.23.0",
"@shikijs/engine-javascript": "^3.23.0",
"@shikijs/themes": "^3.23.0",
"monaco-editor-core": "^0.55.1",
"picomatch": "^4.0.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-router": "^7.13.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@malloydata/cli": "^0.0.50",
"@playwright/test": "^1.58.2",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.10.13",
"@types/picomatch": "^4.0.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-hooks": "7.0.0",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.3.0",
"happy-dom": "^20.7.0",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=24"
},
"overrides": {
"@malloydata/db-duckdb": {
"@duckdb/duckdb-wasm": "$@duckdb/duckdb-wasm"
}
}
}