-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
66 lines (66 loc) · 2.09 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
{
"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",
"lint:quiet": "npx next lint --quiet",
"compile-contract-types": "typechain --target ethers-v5 --out-dir './contracts/types' './contracts/*.json'",
"postinstall": "npm run compile-contract-types",
"e2e": "cypress open",
"e2e:run": "npx cypress run",
"prepare": "husky install",
"prettier": "npx prettier -c --write **/*.{js,css,md,json,ts,tsx}",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coverage:badge": "istanbul-badges-readme --logo=jest"
},
"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",
"istanbul-badges-readme": "^1.8.1",
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "^5.3.3",
"swr": "^1.2.1"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@typechain/ethers-v5": "^8.0.5",
"@types/react": "^17.0.38",
"chai": "^4.3.6",
"chai-bignumber": "^3.0.0",
"cypress": "^9.5.1",
"eslint": "7.32.0",
"eslint-config-next": "12.0.8",
"eslint-config-prettier": "^8.5.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.4",
"hardhat": "^2.8.4",
"husky": ">=6",
"jest": "^27.5.1",
"lint-staged": ">=10",
"node-mocks-http": "^1.11.0",
"prettier": "^2.5.1",
"typechain": "^6.0.5",
"typescript": "^4.5.4"
}
}