-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.68 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.68 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
{
"name": "@nillion/faucet",
"version": "2026.1",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"fmt": "oxfmt",
"lint": "oxlint --fix --type-aware",
"typecheck": "pnpm tsgo -b tsconfig.json",
"fix:web": "pnpm fmt && pnpm lint && pnpm typecheck",
"fix:contracts": "forge fmt --root contracts && solhint 'contracts/src/**/*.sol'",
"fix": "pnpm fix:web && pnpm fix:contracts",
"docker:up": "docker compose -f docker/docker-compose.yml up -d",
"docker:down": "docker compose -f docker/docker-compose.yml down",
"docker:deploy": "./docker/deploy-faucet.sh"
},
"dependencies": {
"@metamask/sdk": "~0.34.0",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@rainbow-me/rainbowkit": "^2.2.10",
"@tanstack/react-query": "^5.90.20",
"@wagmi/core": "^3.3.2",
"@walletconnect/ethereum-provider": "^2.21.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"ioredis": "^5.10.0",
"lucide-react": "^0.577.0",
"next": "16.1.5",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"viem": "^2.45.0",
"wagmi": "^3.4.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^25.0.10",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260127.1",
"oxfmt": "^0.36.0",
"oxlint": "^1.42.0",
"oxlint-tsgolint": "^0.16.0",
"solhint": "^6.0.3",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.31.0"
}