-
Notifications
You must be signed in to change notification settings - Fork 227
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3 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
{
"name": "fulling",
"version": "2.0.0-alpha.5",
"description": "AI-Powered Full-Stack Development Platform",
"author": "fanux",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/FullAgent/fulling.git"
},
"private": true,
"scripts": {
"prepare": "prisma generate",
"dev": "next dev -H 0.0.0.0 -p 3000",
"build": "prisma generate && next build",
"start": "next start -H 0.0.0.0 -p 3000",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prisma:format": "prisma format"
},
"dependencies": {
"@kubernetes/client-node": "^1.4.0",
"@octokit/app": "^16.1.2",
"@octokit/auth-app": "^8.2.0",
"@octokit/rest": "^22.0.1",
"@octokit/webhooks": "^14.2.0",
"@prisma/client": "^6.17.1",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@t3-oss/env-nextjs": "^0.13.8",
"@tanstack/react-query": "^5.90.7",
"@tanstack/react-query-devtools": "^5.90.2",
"@xterm/addon-canvas": "^0.7.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"@zjy365/sealos-desktop-sdk": "^0.1.20",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"croner": "^9.1.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.545.0",
"nanoid": "^5.1.6",
"next": "16.0.10",
"next-auth": "^5.0.0-beta.29",
"next-themes": "^0.4.6",
"pino": "^10.1.0",
"prisma": "^6.17.1",
"radix-ui": "^1.4.3",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-icons": "^5.5.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tus-js-client": "^4.3.1",
"ws": "^8.18.3",
"zod": "^4.1.12"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/ws": "^8.18.1",
"baseline-browser-mapping": "^2.10.0",
"eslint": "^9",
"eslint-config-next": "16.0.7",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.7.4",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.2"
},
"pnpm": {
"overrides": {
"whatwg-url": "^13.0.0",
"tr46": "^4.1.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
},
"packageManager": "pnpm@10.20.0",
"engines": {
"node": ">=22.12.0",
"pnpm": "10.20.0"
}
}