-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.8 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.8 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
{
"name": "fractal-recipe-generator",
"version": "1.0.0",
"description": "A generative AI recipe tool bridging math and culinary arts.",
"author": "MStarRobotics",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"server": "node server/index.js",
"lint": "eslint . --ext .ts,.tsx --max-warnings=50",
"typecheck": "tsc --noEmit",
"test:e2e-auth": "node scripts/e2e-auth-smoke.mjs"
},
"dependencies": {
"@coinbase/onchainkit": "^0.38.15",
"@google/genai": "^1.24.0",
"@tanstack/react-query": "^5.62.8",
"argon2": "^0.41.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"firebase": "^12.5.0",
"firebase-admin": "^13.5.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"viem": "^2.9.20",
"wagmi": "^2.13.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/node": "^22.14.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vitejs/plugin-react": "^5.0.0",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.12.0",
"typescript": "~5.8.2",
"typescript-eslint": "^8.16.0",
"vite": "^6.2.0"
},
"overrides": {
"@walletconnect/ethereum-provider": "2.22.4",
"@walletconnect/sign-client": "2.22.4",
"@walletconnect/core": "2.22.4",
"@walletconnect/types": "2.22.4",
"@walletconnect/utils": "2.22.4",
"@walletconnect/universal-provider": "2.22.4",
"@walletconnect/jsonrpc-provider": "1.0.14",
"@walletconnect/logger": "3.0.0"
}
}