-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.41 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
{
"name": "fulling",
"version": "3.0.0",
"description": "Dedicated AI workspaces",
"author": "fanux",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/FullAgent/fulling.git"
},
"private": true,
"type": "module",
"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",
"audit": "npm audit --audit-level=moderate",
"audit:prod": "npm audit --omit=dev --audit-level=moderate",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prisma:format": "prisma format",
"prisma:validate": "prisma validate",
"prisma:migrate": "prisma migrate deploy"
},
"dependencies": {
"@better-auth/prisma-adapter": "1.6.23",
"@kubernetes/client-node": "1.4.0",
"@prisma/adapter-pg": "7.8.0",
"@prisma/client": "7.8.0",
"@radix-ui/react-avatar": "^1.2.2",
"@radix-ui/react-label": "^2.1.11",
"@t3-oss/env-nextjs": "^0.13.8",
"better-auth": "1.6.23",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"js-yaml": "4.3.0",
"lucide-react": "^0.545.0",
"next": "16.2.10",
"node-fetch": "2.7.0",
"pino": "^10.1.0",
"pg": "^8.22.0",
"prisma": "7.8.0",
"radix-ui": "^1.6.2",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-icons": "^5.7.0",
"tailwind-merge": "^3.6.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@playwright/test": "1.61.1",
"@tailwindcss/postcss": "^4.3.2",
"@types/js-yaml": "4.0.9",
"@types/node": "^24",
"@types/node-fetch": "2.6.13",
"@types/pg": "^8.16.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"baseline-browser-mapping": "^2.10.43",
"eslint": "^9.39.5",
"eslint-config-next": "16.2.10",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^12.1.1",
"tailwindcss": "^4.3.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.10"
},
"overrides": {
"@hono/node-server": "1.19.13",
"whatwg-url": "^13.0.0",
"tr46": "^4.1.1",
"postcss": "8.5.19",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3"
},
"engines": {
"node": "24.x",
"npm": "11.x"
}
}