-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.94 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.94 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
{
"name": "decleanup-mini-app",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.20.0 <25.0.0"
},
"scripts": {
"dev": "NODE_OPTIONS=--no-deprecation NEXT_TELEMETRY_DISABLED=1 next dev --webpack",
"dev:network": "NODE_OPTIONS=--no-deprecation NEXT_TELEMETRY_DISABLED=1 next dev --webpack -H 0.0.0.0",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --maxWorkers=2 --passWithNoTests",
"test:validation": "node scripts/test-input-validation.js",
"generate:metadata": "node scripts/generateImpactMetadata.js"
},
"dependencies": {
"@farcaster/miniapp-sdk": "^0.2.1",
"@farcaster/miniapp-wagmi-connector": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@rainbow-me/rainbowkit": "^2.2.10",
"@tanstack/react-query": "^5.90.7",
"@vercel/og": "^0.8.5",
"botid": "^1.5.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.553.0",
"next": "^16.0.7",
"ox": "^0.10.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"tailwind-merge": "^3.3.1",
"viem": "^2.38.6",
"wagmi": "^2.19.2",
"zustand": "^5.0.8"
},
"devDependencies": {
"baseline-browser-mapping": "^2.9.18",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^16.0.5",
"form-data": "^4.0.4",
"ignore-loader": "^0.1.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"node-fetch": "^2.7.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
}
}