forked from IamLiuLv/compoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.83 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.83 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
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "compoder",
"version": "0.1.0",
"private": true,
"description": "AI-Powered Component Code Generator For Every Frontend Engineer",
"engines": {
"node": ">=22.7.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && tsc --noEmit",
"storybook": "storybook dev -p 6006",
"test:storybook": "test-storybook",
"test": "jest",
"build-storybook": "storybook build",
"migrate-codegen": "tsx lib/db/codegen/migrate.ts",
"build:docker": "docker build -t compoder:latest .",
"build:artifacts-docker": "bash script/build-artifacts-docker.sh",
"postinstall": "playwright install chromium"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.1.17",
"@ai-sdk/deepseek": "^0.2.1",
"@ai-sdk/openai": "^1.0.8",
"@auth/mongodb-adapter": "^3.7.4",
"@emotion/is-prop-valid": "^1.3.1",
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-aspect-ratio": "^1.1.0",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.4",
"@t3-oss/env-nextjs": "^0.10.1",
"@tanstack/react-query": "^5.62.7",
"@tldraw/tldraw": "2.0.0-alpha.17",
"ai": "^4.0.18",
"autosize": "^6.0.1",
"axios": "^1.7.9",
"canvas-size": "^1.2.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.13.1",
"lucide-react": "^0.462.0",
"mongodb": "^6.3.0",
"mongoose": "7.5.3",
"next": "14.2.16",
"next-auth": "^4.24.11",
"next-themes": "^0.4.3",
"ollama-ai-provider": "^1.2.0",
"react": "^18",
"react-dom": "^18",
"react-resizable-panels": "^2.1.7",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@storybook/experimental-addon-test": "^8.6.12",
"@storybook/addon-essentials": "^8.3.6",
"@storybook/addon-interactions": "^8.3.6",
"@storybook/addon-links": "^8.3.6",
"@storybook/addon-onboarding": "^8.3.6",
"@storybook/addon-styling": "^1.3.7",
"@storybook/addon-styling-webpack": "^1.0.0",
"@storybook/addon-themes": "^8.4.6",
"@storybook/addons": "^7.6.17",
"@storybook/api": "^7.6.17",
"@storybook/blocks": "^8.3.6",
"@storybook/core-events": "^8.4.6",
"@storybook/nextjs": "^8.3.6",
"@storybook/preview-api": "^8.4.6",
"@storybook/react": "^8.3.6",
"@storybook/test": "^8.3.6",
"@storybook/test-runner": "^0.22.0",
"@storybook/theming": "^8.4.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/autosize": "^4.0.3",
"@types/canvas-size": "^1.2.2",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.2.16",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"storybook": "^8.3.6",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"tsx": "^4.15.7",
"typescript": "^5",
"playwright": "^1.51.1"
}
}