forked from shadcn-ui/registry-template
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.15 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.15 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
{
"name": "hellno-mini-app-ui",
"version": "0.1.0",
"packageManager": "pnpm@10.9.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:registry": "eslint 'registry/**/*.{ts,tsx}' --config registry/.eslintrc.js",
"check:quotes": "node scripts/check-registry-quotes.js",
"prepare": "husky",
"test:nft": "tsx scripts/test-nft-contracts.ts",
"registry:build": "pnpm check:quotes && shadcn registry:build && node scripts/clean-registry.js",
"registry:test": "node scripts/test-registry-install.js",
"registry:test:build": "node scripts/test-registry-install.js --build",
"registry:test:keep": "node scripts/test-registry-install.js --keep"
},
"dependencies": {
"@daimo/contract": "^1.6.0",
"@daimo/pay": "^1.8.4",
"@farcaster/miniapp-core": "^0.3.6",
"@farcaster/miniapp-sdk": "^0.1.7",
"@farcaster/miniapp-wagmi-connector": "^1.0.0",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.4",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-tooltip": "^1.2.7",
"@tanstack/react-query": "^5.76.1",
"alchemy-sdk": "^3.5.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"embla-carousel-react": "^8.6.0",
"lucide-react": "^0.487.0",
"next": "15.3.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"shadcn": "2.6.0-canary.2",
"tailwind-merge": "^3.2.0",
"tw-animate-css": "^1.2.5",
"viem": "^2.30.0",
"wagmi": "^2.15.4",
"websocket": "^1.0.35",
"zod": "^3.24.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2",
"dotenv": "^16.5.0",
"eslint": "^9",
"eslint-config-next": "15.3.1",
"glob": "^11.0.3",
"husky": "^9.1.7",
"tailwindcss": "^4",
"tsx": "^4.20.3",
"typescript": "^5"
},
"pnpm": {
"overrides": {
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2"
}
}
}