-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.55 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "link-loot",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prettify": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,json}\" ",
"lint": "yarn prettify && yarn lint:fix ",
"lint:fix": "eslint ./ --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.gitignore"
},
"dependencies": {
"@biconomy/account": "^3.0.0-alpha.0",
"@biconomy/bundler": "^3.0.0-alpha.0",
"@biconomy/common": "^3.0.0-alpha.0",
"@biconomy/core-types": "^3.0.0-alpha.0",
"@biconomy/paymaster": "^3.0.0-alpha.0",
"@biconomy/web3-auth": "^3.0.0-alpha.0",
"@ethereumjs/util": "^8.0.0",
"@gatefi/js-sdk": "^0.12.2",
"@headlessui/react": "^1.7.16",
"@lens-protocol/react-web": "^1.3.1",
"@lens-protocol/wagmi": "^2.1.1",
"@lens-protocol/widgets-react": "^0.0.34",
"@rainbow-me/rainbowkit": "^1.0.8",
"@safe-global/account-abstraction-kit-poc": "^1.2.0",
"@safe-global/auth-kit": "^1.2.0",
"@safe-global/protocol-kit": "^1.2.0",
"@safe-global/relay-kit": "^1.2.0",
"@trustwallet/wallet-core": "^3.2.10",
"@types/crypto-js": "^4.1.2",
"@types/node": "20.4.5",
"@types/react": "18.2.17",
"@types/react-dom": "18.2.7",
"@web3auth/base": "^6.1.7",
"@web3auth/ethereum-provider": "^6.1.5",
"@web3auth/no-modal": "^6.1.7",
"@web3auth/openlogin-adapter": "^6.1.7",
"autoprefixer": "10.4.14",
"axios": "^0.27.2",
"bs58": "^5.0.0",
"copy-webpack-plugin": "^11.0.0",
"crypto": "^1.0.1",
"crypto-js": "^4.1.1",
"eslint": "8.45.0",
"eslint-config-next": "13.3.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eth-rpc-errors": "^4.0.3",
"ethers": "5.7.0",
"lottie-react": "^2.3.1",
"magic-sdk": "^20.1.1",
"nanoid": "^5.0.1",
"next": "13.4.12",
"postcss": "8.4.27",
"qr-code-styling": "^1.6.0-rc.1",
"react": "18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "18.2.0",
"react-toastify": "^9.1.1",
"react-type-animation": "^3.1.0",
"react-typed": "^1.2.0",
"tailwindcss": "3.3.3",
"typescript": "5.1.6",
"viem": "^1.14.0",
"wagmi": "^1.4.2",
"web3": "^4.1.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "2.7.1"
}
}