-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "gatekeeper",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"sol:clean": "hardhat clean",
"sol:compile": "hardhat compile",
"sol:hardhat:rinkeby": "hardhat --network rinkeby",
"sol:test": "hardhat test",
"sol:test:rinkeby": "npm run hardhat test",
"sol:deploy:rinkeby": "npm run sol:hardhat:rinkeby run ./scripts/deploy.ts"
},
"dependencies": {
"@ethersproject/bignumber": "^5.6.0",
"@heroicons/react": "^1.0.6",
"autoprefixer": "^10.4.4",
"ethers": "^5.6.1",
"next": "12.1.0",
"postcss": "^8.4.12",
"react": "17.0.2",
"react-dom": "17.0.2",
"tailwindcss": "^3.0.23",
"typechain": "^7.0.1",
"web3": "^1.7.1"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.4.2",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "17.0.21",
"@types/react": "17.0.40",
"chai": "^4.3.6",
"dotenv": "^14.3.2",
"eslint": "8.11.0",
"eslint-config-next": "12.1.0",
"hardhat": "^2.9.1",
"hardhat-gas-reporter": "^1.0.7",
"mocha": "^9.2.1",
"ts-node": "^10.7.0",
"typescript": "4.6.2"
}
}