-
-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.59 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.59 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
{
"name": "@tanstack/create-ui",
"version": "0.59.2",
"type": "module",
"main": "./lib-dist/index.js",
"types": "./lib-dist/index.d.ts",
"scripts": {
"build": "npm run build:lib && npm run build:ui",
"build:ui": "vite build",
"build:lib": "tsc -p tsconfig.lib.json",
"dev": "tsc --watch -p tsconfig.lib.json",
"dev:ui": "VITE_API_BASE_URL=http://localhost:8080 vite dev",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/cli.git",
"directory": "packages/create-ui"
},
"dependencies": {
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.3",
"@codemirror/lang-json": "^6.0.1",
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.10",
"@radix-ui/react-dropdown-menu": "^2.1.11",
"@radix-ui/react-label": "^2.1.4",
"@radix-ui/react-popover": "^1.1.10",
"@radix-ui/react-separator": "^1.1.4",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-switch": "^1.2.2",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toggle": "^1.1.2",
"@radix-ui/react-toggle-group": "^1.1.2",
"@radix-ui/react-tooltip": "^1.2.3",
"@tailwindcss/vite": "^4.1.6",
"@tanstack/create": "workspace:*",
"@tanstack/react-query": "^5.66.5",
"@uiw/codemirror-theme-github": "^4.23.10",
"@uiw/react-codemirror": "^4.23.10",
"@webcontainer/api": "^1.3.5",
"chalk": "^5.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"embla-carousel-react": "^8.6.0",
"execa": "^9.5.2",
"express": "^4.21.2",
"lucide-react": "^0.554.0",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-codemirror-merge": "^4.23.10",
"react-dom": "^19.0.0",
"sonner": "^2.0.3",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.1.6",
"tailwindcss-animate": "^1.0.7",
"vite-tsconfig-paths": "^5.1.4",
"zustand": "^5.0.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/node": "^22.14.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "3.1.1",
"jsdom": "^26.0.0",
"typescript": "^5.7.2",
"vite": "^7.1.7",
"vitest": "^3.1.4",
"web-vitals": "^4.2.4"
}
}