-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.78 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
60
61
62
63
64
65
66
67
68
{
"name": "w3auth",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@alch/alchemy-sdk": "^1.0.8",
"@alch/alchemy-web3": "^1.4.6",
"@emotion/react": "^11.10.0",
"@emotion/server": "^11.10.0",
"@heroicons/react": "^1.0.6",
"@mantine/core": "^5.0.2",
"@mantine/dates": "^5.0.2",
"@mantine/form": "^5.0.2",
"@mantine/hooks": "^5.0.2",
"@mantine/next": "^5.0.2",
"@mantine/ssr": "^5.0.2",
"@onflow/fcl": "^1.1.0",
"@polkadot/keyring": "^10.1.1",
"@polkadot/util": "^10.1.1",
"@prisma/client": "^4.1.1",
"@radix-ui/react-icons": "^1.1.1",
"@rainbow-me/rainbowkit": "^0.4.4",
"@solana/web3.js": "^1.50.0",
"boring-avatars": "^1.7.0",
"bs58": "^5.0.0",
"cors": "^2.8.5",
"dayjs": "^1.11.4",
"ethers": "^5.6.9",
"got": "^12.2.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"near-api-js": "^0.45.1",
"next": "12.2.0",
"nextjs-cors": "^2.1.1",
"nprogress": "^0.2.0",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.2.0",
"react-tippy": "^1.4.0",
"tweetnacl": "^1.0.3",
"use-dark-mode": "^2.3.1",
"wagmi": "^0.5.11",
"web3": "^1.7.4"
},
"prisma": {
"schema": "db/schema.prisma",
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} db/seed.ts"
},
"devDependencies": {
"@types/node": "^18.0.1",
"@types/react": "^18.0.15",
"autoprefixer": "^10.4.7",
"eslint": "8.19.0",
"eslint-config-next": "12.2.0",
"postcss": "^8.4.14",
"prisma": "^4.1.0",
"tailwindcss": "^3.1.4",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}