-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "space-id-abstractor",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:fix": "eslint ./ --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"prettify": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,json}\" ",
"lint": "pnpm prettify && pnpm lint:fix ",
"remove-locks": "rm -rf yarn.lock && rm -rf package-lock.json"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.14",
"@chakra-ui/react": "^2.8.1",
"@covalenthq/client-sdk": "^0.2.9",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.1.18",
"@headlessui/react": "^1.7.17",
"@rainbow-me/rainbowkit": "^1.0.8",
"@testing-library/react": "^14.0.0",
"@tippyjs/react": "^4.2.6",
"@tokenbound/sdk": "^0.3.8",
"@types/lodash": "^4.14.188",
"@types/node": "^20.5.3",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@wagmi/core": "^1.4.3",
"@walletconnect/core": "^2.10.1",
"@walletconnect/types": "^2.10.1",
"@walletconnect/utils": "^2.10.1",
"@walletconnect/web3wallet": "^1.9.1",
"axios": "^1.5.1",
"chakra-react-select": "^4.4.3",
"ethers": "^5.4.5",
"evm-rpcs-list": "^2.0.2",
"flat": "^5.0.2",
"framer-motion": "^10.16.4",
"lodash": "^4.17.21",
"net": "^1.0.2",
"next": "13.5.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "^2.2.4",
"tls": "^0.0.1",
"viem": "^1.10.4",
"wagmi": "^1.3.9",
"web3": "^4.1.1"
},
"devDependencies": {
"@types/flat": "^5.0.2",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"autoprefixer": "10.4.15",
"eslint": "8.47.0",
"eslint-config-next": "13.5.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"jsdom": "^20.0.1",
"postcss": "8.4.28",
"postcss-import": "^15.1.0",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "^3.3.3",
"typescript": "5.1.6"
}
}