mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
* Merge 2 npm repos * Install ts-jest * Update jestconfig * Fix jest types * jest fix * Fix babel config ref issue * Fix import * Fix import meta issue * fix generate * Skip multi-user tests
29 lines
715 B
JSON
29 lines
715 B
JSON
{
|
|
"name": "comfyui-frontend",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "npm run typecheck && vite build",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "jest",
|
|
"test:generate": "npx tsx tests-ui/setup",
|
|
"preview": "vite preview"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.24.7",
|
|
"@babel/preset-env": "^7.22.20",
|
|
"@types/jest": "^29.5.12",
|
|
"babel-plugin-transform-import-meta": "^2.2.1",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"ts-jest": "^29.1.4",
|
|
"ts-node": "^10.9.2",
|
|
"tsx": "^4.15.6",
|
|
"typescript": "^5.4.5",
|
|
"vite": "^5.2.0",
|
|
"vite-plugin-no-bundle": "^4.0.0"
|
|
}
|
|
}
|