forked from r4sjunior/rastamemo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.05 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.05 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@neynar/library.miniapp-template",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.30.3",
"scripts": {
"db:push": "[ -z \"$DATABASE_URL\" ] || drizzle-kit push --force --verbose </dev/null",
"build": "next build",
"clean": "rimraf .next node_modules",
"cleanup": "node scripts/cleanup.js",
"deploy:raw": "vercel --prod",
"deploy:vercel": "node --loader ts-node/esm scripts/deploy.ts",
"dev": "pnpm run db:push && next dev --turbopack",
"dev:webpack": "pnpm run db:push && next dev -p 3001",
"install:standalone": "pnpm install",
"lint": "eslint .",
"lint:file": "eslint",
"lint:fix": "eslint . --fix",
"lint:next": "next lint",
"start": "next start",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"type-check:detailed": "tsc --noEmit --pretty --listFiles",
"type-check:watch": "tsc --noEmit --watch",
"validate": "pnpm run type-check && pnpm run lint && pnpm run format:check",
"validate:fix": "pnpm run type-check && pnpm run lint:fix && pnpm run format"
},
"dependencies": {
"@coingecko/coingecko-typescript": "1.11.3",
"@farcaster/miniapp-sdk": "0.2.3",
"@farcaster/miniapp-wagmi-connector": "1.1.1",
"@metamask/jazzicon": "2.0.0",
"@neynar/nodejs-sdk": "3.34.0",
"@neynar/ui": "0.3.1",
"@tanstack/react-query": "5.90.5",
"drizzle-orm": "^0.38.3",
"jotai": "2.15.0",
"jotai-effect": "2.1.3",
"lucide-react": "0.545.0",
"next": "16.2.0",
"postgres": "^3.4.7",
"react": "19.2.3",
"react-dom": "19.2.3",
"server-only": "0.0.1",
"tone": "15.1.22",
"viem": "2.38.5",
"wagmi": "2.19.1",
"zod": "4.1.12"
},
"devDependencies": {
"abitype": "^1.1.1",
"@eslint/eslintrc": "3.3.3",
"@next/eslint-plugin-next": "16.2.1",
"@neynar/eslint-plugin": "0.0.3",
"@tailwindcss/postcss": "^4",
"@types/node": "^22.19.15",
"@types/prettier": "^2.7.3",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@vercel/sdk": "^1.9.0",
"babel-plugin-react-compiler": "1.0.0",
"crypto": "^1.0.1",
"drizzle-kit": "^0.31.5",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.1",
"localtunnel": "^2.0.2",
"postcss": "^8",
"prettier": "^3.6.2",
"rimraf": "6.0.1",
"tailwindcss": "^4",
"ts-morph": "^26.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.5",
"typescript": "5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@nestjs/core",
"@openapitools/openapi-generator-cli",
"@tailwindcss/oxide",
"bufferutil",
"esbuild",
"keccak",
"sharp",
"unrs-resolver",
"utf-8-validate"
]
},
"overrides": {
"axios": ">=1.8.2",
"@metamask/sdk": ">=0.33.1",
"@metamask/sdk-communication-layer": ">=0.33.1",
"@metamask/sdk-react": ">=0.33.1",
"debug": ">=4.4.3",
"color": ">=0.11.5",
"color-string": ">=1.5.5",
"esbuild": ">=0.25.0",
"glob": ">=11.1.0",
"js-yaml": ">=4.1.1",
"valtio": ">=2.1.8"
}
}