-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.25 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.25 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
{
"name": "deltaview",
"version": "1.3.2",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"bun run api:server\"",
"api:server": "bun run deltaview_apis/index.ts",
"start": "NODE_ENV=production bun src/index.tsx",
"build": "vite build",
"preview": "vite preview",
"pages:build": "vite build",
"pages:deploy": "wrangler pages deploy dist",
"pages:deploy:production": "wrangler pages deploy dist --branch=main",
"pages:dev": "wrangler pages dev dist",
"test": "vitest",
"test:e2e": "cypress run",
"test:e2e:open": "cypress open",
"test:e2e:store": "cypress run --spec cypress/e2e/store-provider.cy.ts"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-dialog": "^1.1.3",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.7",
"@radix-ui/react-tooltip": "^1.1.7",
"@sentry/react": "^10.38.0",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-table": "^8.21.3",
"@types/dagre": "^0.7.53",
"@types/js-yaml": "^4.0.9",
"@types/jszip": "^3.4.1",
"bun-plugin-tailwind": "^0.0.15",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3-selection": "^3.0.0",
"d3-transition": "^3.0.1",
"dagre": "^0.8.5",
"diff": "^8.0.3",
"framer-motion": "^12.34.0",
"js-yaml": "^4.1.1",
"jszip": "^3.10.1",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.525.0",
"mobx": "^6.15.0",
"mobx-react-lite": "^4.1.1",
"prettier": "^3.8.1",
"react": "^19",
"react-dom": "^19",
"react-dropzone": "^15.0.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^2.1.7",
"react-router-dom": "^7.13.0",
"react-syntax-highlighter": "^16.1.0",
"reactflow": "^11.11.4",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.11",
"tailwindcss-animate": "^1.0.7",
"uuid": "^13.0.0",
"elysia": "^1.1.0",
"@elysiajs/cors": "^1.1.0",
"@elysiajs/compress": "^1.1.0"
},
"overrides": {
"d3-selection": "3.0.0",
"d3-transition": "3.0.1",
"d3-zoom": "3.0.0"
},
"resolutions": {
"d3-selection": "3.0.0",
"d3-transition": "3.0.1",
"d3-zoom": "3.0.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.11",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/bun": "latest",
"@types/diff": "^7.0.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^11.0.0",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"cypress": "^15.10.0",
"cypress-real-events": "^1.15.0",
"jsdom": "^28.1.0",
"start-server-and-test": "^2.1.3",
"vite": "^6.3.5",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.18"
},
"patchedDependencies": {
"d3-zoom@3.0.0": "patches/d3-zoom@3.0.0.patch"
}
}