-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.78 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
{
"name": "@internetcamera/contracts",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "yarn build:contracts && yarn build:package",
"prepublishOnly": "yarn build",
"test": "hardhat test",
"compile": "hardhat clean && hardhat compile",
"typechain": "rm -rf ./typechain && typechain --show-stack-traces --target ethers-v5 --out-dir ./typechain 'artifacts/!(build-info)/**/!(*.dbg*)*.json'",
"build:contracts": "yarn compile && yarn typechain",
"build:package": "rm -rf ./dist && tsc && cp -R addresses dist && cp -R artifacts/contracts dist/artifacts && cp -R contracts dist",
"deploy": "ts-node scripts/deploy.ts --chainId 4 && cp -R addresses dist"
},
"devDependencies": {
"@divergencetech/ethier": "^0.10.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^4.4.1",
"@openzeppelin/contracts-upgradeable": "^4.4.1",
"@openzeppelin/hardhat-upgrades": "^1.12.0",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/fs-extra": "^9.0.12",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-ethers": "^0.0.1",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.5.2",
"fs-extra": "^10.0.0",
"hardhat": "^2.8.0",
"hardhat-change-network": "^0.0.7",
"hardhat-deploy": "^0.9.14",
"hardhat-deploy-ethers": "^0.3.0-beta.11",
"hardhat-gas-reporter": "^1.0.6",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.27",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"typechain": "^6.0.5",
"typescript": "^4.5.4"
}
}