forked from nomspace/nomspace-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.3 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.3 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@nomspace/interface",
"description": "Nomspace Interface",
"homepage": ".",
"private": true,
"devDependencies": {
"@sentry/webpack-plugin": "^1.15.1",
"@typechain/ethers-v5": "^8.0.5",
"@types/qrcode.react": "^1.0.2",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.6",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@ubeswap/injected-connector": "^6.1.0",
"@uniswap/token-lists": "^1.0.0-beta.24",
"@web3-react/core": "^6.1.9",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.1",
"husky": ">=6",
"lint-staged": ">=11",
"prettier": "2.3.2",
"typechain": "^6.1.0",
"typescript": "^4.3.2"
},
"scripts": {
"typechain": "typechain --target=ethers-v5 ./src/abis/**/**/*.json --out-dir src/generated",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write .",
"postinstall": "yarn typechain"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"license": "UNLICENSED",
"dependencies": {
"@apollo/client": "^3.5.7",
"@celo-tools/use-contractkit": "npm:@nomspace/use-contractkit@^0.0.3",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@ensdomains/ensjs": "^2.0.1",
"@mattjennings/react-modal": "^1.0.3",
"@mattjennings/react-modal-stack": "^1.0.4",
"@mui/base": "^5.0.0-alpha.63",
"@mui/material": "^5.2.7",
"@nomspace/nomspace": "^1.0.5",
"@reduxjs/toolkit": "^1.6.0",
"@sentry/react": "^6.19.6",
"@sentry/tracing": "^6.19.6",
"@theme-ui/match-media": "^0.13.1",
"@types/react-window": "^1.8.5",
"@walletconnect/web3-provider": "^1.7.0",
"@web3-react/injected-connector": "^6.0.7",
"axios": "^0.24.0",
"eth-ens-namehash": "^2.0.8",
"ethers": "^5.4.1",
"framer-motion": "^2.0.0",
"graphql": "^16.2.0",
"localforage": "^1.10.0",
"moment": "^2.29.1",
"phosphor-react": "^1.3.1",
"qrcode.react": "^1.0.1",
"react": "17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "17.0.2",
"react-modal": "^3.14.3",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-toastify": "^7.0.4",
"react-window": "^1.8.6",
"recoil": "^0.5.2",
"theme-ui": "^0.10.0",
"unstated-next": "^1.1.0",
"web3": "^1.3.5",
"web3-token-list": "https://github.com/BriungRi/web3-token-list#761a73046151414ae0590ef98d4b5c2309acac1c",
"web3-utils": "^1.5.1",
"web3modal": "^1.9.4"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{html,md,graphql,json,yaml,yml}": "prettier --write"
},
"resolutions": {
"@celo/wallet-walletconnect": "1.2.0"
},
"eslintConfig": {
"extends": [
"react-app"
]
}
}