-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.4 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.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
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
{
"name": "openpay",
"version": "0.1.0",
"private": true,
"description": "Gasless QR payment MVP — JPYC (Polygon) / USDC (Base) via ERC-4337 + Pimlico + ERC-7702",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"e2e": "playwright test",
"e2e:local": "NEXT_PUBLIC_NETWORK_ENV=testnet NEXT_PUBLIC_PIMLICO_API_KEY=dummy NEXT_PUBLIC_FEE_RECEIVER_ADDRESS=0x000000000000000000000000000000000000dEaD next build && playwright test",
"e2e:install": "playwright install --with-deps chromium webkit",
"load-test": "node scripts/load-test.mjs",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --fix"
},
"overrides": {
"axios": "^1.15.2",
"fast-uri": "^3.1.2",
"js-cookie": "^3.0.7",
"ws@>=8.0.0 <8.20.1": "^8.21.0"
},
"dependencies": {
"@aa-sdk/core": "^4.88.2",
"@account-kit/smart-contracts": "^4.88.2",
"@metamask/delegation-toolkit": "^0.13.0",
"@sentry/nextjs": "^10.50.0",
"@tanstack/react-query": "^5.59.16",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"lucide-react": "^1.16.0",
"next": "^15.5.18",
"next-intl": "^4.9.1",
"permissionless": "^0.2.30",
"qr-scanner": "^1.4.2",
"qrcode.react": "^4.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"viem": "^2.45.0",
"wagmi": "^2.13.0",
"x402-fetch": "^1.2.0",
"x402-next": "^1.2.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.2",
"@commitlint/config-conventional": "^20.5.0",
"@playwright/test": "^1.59.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.9.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.9",
"autoprefixer": "^10.4.20",
"eslint": "^9.14.0",
"eslint-config-next": "^15.0.3",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^16.4.0",
"postcss": "^8.5.15",
"qrcode": "^1.5.4",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
}
}