forked from slavingia/fweb3.xyz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.58 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
{
"name": "fweb3.xyz",
"private": true,
"scripts": {
"dev": "next dev",
"browser-debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"compile-contract-types": "typechain --target ethers-v5 --out-dir './contracts/types' './contracts/*.json'",
"postinstall": "npm run compile-contract-types",
"e2e": "cypress open",
"prepare": "husky install"
},
"dependencies": {
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.2",
"@ethersproject/units": "^5.5.0",
"@ethersproject/wallet": "^5.5.0",
"@metamask/detect-provider": "^1.2.0",
"@metamask/onboarding": "^1.0.1",
"@openzeppelin/contracts": "^4.5.0",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"classnames": "^2.3.1",
"next": "12.0.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"swr": "^1.2.1"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@typechain/ethers-v5": "^8.0.5",
"@types/react": "^17.0.38",
"chai": "^4.3.6",
"chai-bignumber": "^3.0.0",
"cypress": "^9.5.0",
"eslint": "7.32.0",
"eslint-config-next": "12.0.8",
"eslint-config-prettier": "^8.4.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.4",
"hardhat": "^2.8.4",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.5.1",
"typechain": "^6.0.5",
"typescript": "^4.5.4"
}
}