-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1019 Bytes
/
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
{
"license": "MIT",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"frontend:dev": "next dev",
"frontend:build": "next build",
"frontend:start": "next start"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.5.0",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.25",
"@types/react": "^18.0.6",
"chai": "^4.3.6",
"ethers": "^5.6.4",
"hardhat": "^2.9.3",
"mocha": "^9.2.2",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@chakra-ui/react": "^1.8.8",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"dotenv": "^16.0.0",
"framer-motion": "^6",
"next": "^12.1.5",
"phosphor-react": "^1.4.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-tracked": "^1.7.9"
}
}