-
Notifications
You must be signed in to change notification settings - Fork 374
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.57 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.57 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
{
"name": "tobiko",
"version": "0.0.0",
"scripts": {
"dev": "pnpm run generate:api && vite",
"build": "pnpm run generate:api && tsc && vite build",
"preview": "vite preview --no-open",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "pnpm run generate:api && pnpm run test:unit && pnpm run test:e2e",
"test:unit:watch": "NODE_ENV=development vitest --watch=true",
"test:unit": "NODE_ENV=testing vitest --watch=false",
"test:e2e": "NODE_ENV=testing playwright test",
"playwright:install": "playwright install --with-deps",
"generate:api": "orval --config ./orval.config.ts"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/commands": "^6.8.1",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-sql": "^6.9.0",
"@codemirror/language": "^6.11.1",
"@codemirror/legacy-modes": "^6.5.1",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.37.1",
"@headlessui/react": "^2.2.4",
"@heroicons/react": "^2.2.0",
"@lit/react": "^1.0.7",
"@radix-ui/react-context-menu": "^2.2.15",
"@radix-ui/react-select": "^2.2.5",
"@tailwindcss/container-queries": "^0.1.1",
"@tanstack/react-query": "^5.80.6",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.9",
"@uidotdev/usehooks": "^2.4.1",
"@uiw/react-codemirror": "^4.23.12",
"apache-arrow": "^19.0.1",
"clsx": "^2.1.1",
"diff": "^8.0.2",
"elkjs": "^0.10.0",
"pluralize": "^8.0.0",
"react": "^18.3.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-router": "^7.6.2",
"react-split": "^2.0.14",
"reactflow": "^11.11.4",
"thememirror": "^2.0.1",
"zustand": "^5.0.5"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@playwright/test": "^1.52.0",
"@swc/core": "^1.11.31",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/pluralize": "^0.0.33",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react-swc": "^3.10.1",
"ajv": "^8.17.1",
"autoprefixer": "^10.4.21",
"eslint": "^9.28.0",
"jsdom": "^26.1.0",
"orval": "^7.9.0",
"postcss": "^8.5.4",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0",
"vite": "^6.3.5",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vitest": "^3.2.3"
},
"optionalDependencies": {
"@swc/core-linux-x64-gnu": "^1.11.31"
}
}