-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.4 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
{
"name": "minipad",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/BlockchainLD/Minipad.git"
},
"scripts": {
"dev": "concurrently \"bun run next:dev\" \"bun run convex:dev\"",
"next:dev": "next dev --turbopack",
"convex:dev": "bunx convex dev",
"build": "npx convex deploy && next build",
"start": "next start",
"lint": "eslint",
"register-schemas": "node scripts/register-eas-schemas.js",
"deploy-resolver": "node scripts/deploy-resolver.js",
"setup-eas": "./scripts/setup-eas-schemas.sh",
"test-eas": "node scripts/test-eas-connection.js",
"seed-ideas": "node scripts/seed-ideas.js"
},
"dependencies": {
"@ethereum-attestation-service/eas-sdk": "^2.9.1-beta.1",
"@farcaster/miniapp-sdk": "^0.2.3",
"@farcaster/miniapp-wagmi-connector": "^1.0.0",
"@tanstack/react-query": "^5.89.0",
"convex": "^1.27.1",
"iconoir-react": "^7.11.0",
"next": "15.5.9",
"react": "19.1.0",
"react-dom": "19.1.0",
"sonner": "^2.0.7",
"viem": "^2.37.6",
"wagmi": "^2.17.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.2.1",
"eslint": "^9",
"eslint-config-next": "15.5.3",
"tailwindcss": "^4",
"typescript": "5.9.3"
}
}