-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.51 KB
/
package.json
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
{
"name": "open-browser-wallet",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --experimental-build-mode compile",
"start": "next start",
"lint": "next lint",
"migrate": "tsx src/scripts/migrate.ts"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.16.1",
"@lucia-auth/adapter-postgresql": "^3.1.2",
"@tanstack/react-query": "^5.59.0",
"@walletconnect/core": "^2.13.3",
"@walletconnect/types": "^2.13.3",
"@walletconnect/utils": "^2.13.3",
"@walletconnect/web3wallet": "^1.12.3",
"dotenv": "^16.4.5",
"ioredis": "^5.4.1",
"js-cookie": "^3.0.5",
"kysely": "^0.27.4",
"lucia": "^3.2.1",
"next": "14.2.14",
"pg": "^8.13.0",
"pg-cursor": "^2.12.0",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^2.5.3",
"viem": "2.21.14",
"wagmi": "2.12.14",
"webauthn-p256": "^0.0.10"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/pg": "^8.11.10",
"@types/pg-cursor": "^2.7.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@wagmi/cli": "latest",
"bufferutil": "^4.0.8",
"encoding": "^0.1.13",
"lokijs": "^1.5.12",
"pino-pretty": "^10.3.1",
"postcss": "^8",
"supports-color": "^9.4.0",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.1",
"typescript": "^5",
"utf-8-validate": "^5.0.2"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}