-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.86 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.86 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
{
"name": "nanonodebanana",
"version": "0.1.0",
"description": "Visual node-based workflow editor for AI image generation",
"type": "module",
"scripts": {
"dev": "concurrently \"bun run dev:server\" \"bun run dev:client\"",
"dev:client": "vite",
"dev:server": "bun --watch server/index.ts",
"build": "tsc && vite build",
"build:server": "bun build server/index.ts --outdir=dist/server --target=bun",
"start": "bun run dist/server/index.js",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@elysiajs/cors": "^1.1.1",
"@elysiajs/static": "^1.1.1",
"@fal-ai/client": "^1.2.1",
"@google/generative-ai": "^0.21.0",
"elysia": "^1.1.26",
"konva": "^10.0.12",
"litegraph.js": "^0.7.18",
"react": "19",
"react-dom": "19",
"react-konva": "^19.2.1",
"uuid": "^11.0.3",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@tailwindcss/vite": "^4.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^22.10.2",
"@types/react": "19",
"@types/react-dom": "19",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.0.16",
"bun-types": "^1.3.5",
"concurrently": "^9.1.0",
"eslint": "^9.16.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.13.0",
"jsdom": "^27.3.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vitest": "^4.0.16"
},
"engines": {
"bun": ">=1.0.0"
}
}