-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.14 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
{
"name": "comfyui-gui-builder",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently -k \"vite --host\" \"node --experimental-strip-types --watch server/index.ts\"",
"server": "node --experimental-strip-types --watch server/index.ts",
"mcp": "node --experimental-strip-types server/mcpServer.ts",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@guolao/vue-monaco-editor": "^1.6.0",
"axios": "^1.16.0",
"express": "^5.2.1",
"jszip": "^3.10.1",
"monaco-editor": "^0.55.1",
"nanoid": "^5.1.11",
"pinia": "^3.0.4",
"vue": "^3.5.32",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^24.12.2",
"@vitejs/plugin-vue": "^6.0.6",
"@vitest/coverage-v8": "^4.1.5",
"@vue/test-utils": "^2.4.10",
"@vue/tsconfig": "^0.9.1",
"concurrently": "^9.2.1",
"jsdom": "^29.1.1",
"tsx": "^4.21.0",
"typescript": "~6.0.2",
"vite": "^8.0.10",
"vitest": "^4.1.5",
"vue-tsc": "^3.2.7"
}
}