forked from loupesrl/0xhabitat-devenv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
{
"name": "0xhabitat-devenv",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"start:node": "hardhat node",
"generate:typechain": "typechain --target=ethers-v5 metadata/*.json ",
"diamond:add": "hardhat diamond:add --remote --save-metadata --address ",
"diamond:init": "hardhat diamond:init && yarn generate:typechain"
},
"dependencies": {
"@solidstate/contracts": "^0.0.35",
"@usedapp/core": "^1.0.15",
"hardhat-gemcutter": "https://github.com/marcocastignoli/hardhat-gemcutter",
"next": "12.1.6",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.1.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"chai": "^4.3.6",
"eslint": "8.18.0",
"eslint-config-next": "12.1.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.9",
"hardhat": "^2.9.9",
"ts-node": "^10.8.1",
"typechain": "^8.1.0",
"typescript": "4.7.4"
}
}