-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "demo-contracts",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/DeepBrainChain/demo-contracts.git",
"author": "DeepBrainChain Developers",
"license": "Apache-2.0",
"files": [
"/contracts/**/*.sol",
"/build/contracts/*.json",
"!/contracts/mocks/**/*"
],
"workspaces": [
"contracts"
],
"scripts": {
"clean": "hardhat clean",
"build": "hardhat compile",
"deploy": "hardhat run --network hardhat scripts/deploy.ts",
"test": "hardhat run --network hardhat scripts/test.ts",
"deploy-dbc-testnet": "hardhat run --network dbcTestnet scripts/deploy.ts",
"lint": "solhint contracts/**/*.sol"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"@openzeppelin/contracts": "4.9.3",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"dotenv": "^16.1.4",
"ethereum-waffle": "^3.4.4",
"handlebars": "^4.7.7",
"hardhat": "^2.13.0",
"solhint": "^3.4.1",
"ts-node": "^10.7.0",
"typechain": "^8.1.1",
"typescript": "^4.6.3"
},
"packageManager": "[email protected]"
}