-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 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
{
"name": "agent-payment-demo",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.6.2",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.36",
"@ai-sdk/react": "^3.0.106",
"@coinbase/cdp-sdk": "^1.44.1",
"@rainbow-me/rainbowkit": "^2.2.10",
"@stripe/stripe-js": "^8.9.0",
"@tanstack/react-query": "^5.90.21",
"ai": "^6.0.104",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"stripe": "^20.4.0",
"viem": "^2.46.3",
"wagmi": "^2.19.5",
"zod": "3"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^25.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.28.0",
"eslint-config-next": "^16.1.6",
"tailwindcss": "^4.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}