-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "eth-rps",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"chain": "npx hardhat node",
"deploy": "npx hardhat run scripts/deploy.js --network localhost",
"full-deploy": "npx hardhat node && npx hardhat run scripts/deploy.js --network localhost",
"deploy-ropsten": "npx hardhat run scripts/deploy.js --network ropsten"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/inter": "^4.5.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"axios": "^0.24.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"framer-motion": "^4",
"hardhat": "^2.7.0",
"nanoid": "^3.1.30",
"next": "12.0.4",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@iconify/react": "^3.1.0",
"eslint": "7",
"eslint-config-next": "12.0.4"
}
}