forked from u485349-coder/OpenFoundry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 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
{
"name": "@open-foundry/web",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"check": "tsc -b --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:unit": "vitest run",
"test:e2e": "playwright test"
},
"dependencies": {
"@tanstack/react-query": "=5.100.9",
"cytoscape": "=3.33.2",
"cytoscape-fcose": "^2.2.0",
"echarts": "=6.0.0",
"maplibre-gl": "=5.24.0",
"monaco-editor": "=0.55.1",
"react": "=19.2.5",
"react-dom": "=19.2.5",
"react-router-dom": "=7.15.0"
},
"devDependencies": {
"@playwright/test": "=1.59.1",
"@tailwindcss/postcss": "=4.2.4",
"@types/node": "=25.6.0",
"@types/react": "=19.2.14",
"@types/react-dom": "=19.2.3",
"@vitejs/plugin-react-swc": "=4.3.0",
"autoprefixer": "=10.5.0",
"eslint": "=10.2.1",
"postcss": "=8.5.12",
"tailwindcss": "=4.2.4",
"typescript": "=6.0.3",
"typescript-eslint": "=8.59.1",
"vite": "=8.0.10",
"vitest": "=4.1.5"
}
}