This repository was archived by the owner on Sep 21, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
57 lines (57 loc) · 1.82 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
{
"name": "hypertext",
"author": "Noah Zinsmeister",
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"build-ipfs": "IPFS=true next build && next export",
"prettier": "prettier --check \"**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@ethersproject/abi": "^5.0.2",
"@ethersproject/address": "^5.0.2",
"@ethersproject/bignumber": "^5.0.5",
"@ethersproject/bytes": "^5.0.3",
"@ethersproject/contracts": "^5.0.2",
"@ethersproject/hash": "^5.0.2",
"@ethersproject/providers": "^5.0.5",
"@ethersproject/strings": "^5.0.2",
"@ethersproject/units": "^5.0.2",
"@metamask/onboarding": "^1.0.0",
"@reach/combobox": "^0.10.3",
"@uniswap/sdk": "2.0.5",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@web3-react/core": "^6.1.1",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/network-connector": "6.0.9",
"@web3-react/walletconnect-connector": "^6.1.5",
"emotion-theming": "^10.0.27",
"graphql-request": "^2.0.0",
"next": "^9.4.4",
"node-vibrant": "^3.1.5",
"react": "^16.13.1",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.13.1",
"swr": "^0.2.2"
},
"devDependencies": {
"@types/node": "^14.0.13",
"@types/react-select": "^3.0.13",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"prettier": "^2.0.5",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"typescript": "^3.9.5"
}
}