-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
{
"name": "predeploy-contracts",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/AcalaNetwork/predeploy-contracts.git",
"author": "Shaopeng Wang <[email protected]>",
"license": "Apache-2.0",
"files": [
"/contracts/**/*.sol",
"/build/contracts/*.json",
"!/contracts/mocks/**/*"
],
"workspaces": [
"contracts"
],
"scripts": {
"clean": "hardhat clean",
"build": "hardhat compile",
"test": "hardhat run --network hardhat scripts/deploy.ts",
"test-mandala": "hardhat run --network mandala scripts/deploy.ts",
"prepack": "scripts/prepack.sh",
"generate-bytecode": "hardhat run generate/generate.js",
"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",
"@primitivefi/hardhat-dodoc": "^0.2.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]"
}