-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.02 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.02 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/react": "^1.8.8",
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@rainbow-me/rainbowkit": "^0.1.0",
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^10.2.1",
"@testing-library/user-event": "^12.0.2",
"buffer": "^6.0.3",
"chai": "^4.3.6",
"coverage": "^0.4.1",
"dotenv": "^16.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.6",
"framer-motion": "^4.0.0",
"fs": "^0.0.1-security",
"ganache-cli": "^6.12.2",
"hardhat": "^2.9.3",
"ipfs-http-client": "^56.0.3",
"js-file-download": "^0.4.12",
"os": "^0.1.2",
"path": "^0.12.7",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-icons": "^3.0.0",
"react-scripts": "5.0.0",
"solidity-coverage": "^0.7.20",
"wagmi": "^0.3.5",
"web-vitals": "^0.2.2",
"web3.storage": "^4.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"account": "npx hardhat account",
"accounts": "npx hardhat accounts",
"chain": "npx hardhat node --network hardhat",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"coverage": "npx hardhat coverage --testfiles test/*.js --network localhost",
"deploy": "node scripts/deploy.js",
"generate": "npx hardhat generate",
"help": "npx hardhat help",
"test-contract": "npx hardhat test",
"verify": "npx hardhat etherscan-verify --api-key 2ZVQM5N7KMZVNSGE2BJY2KDU28N7QGCA9T"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}