-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.16 KB
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
51
52
53
54
55
56
57
58
59
60
{
"name": "@areatechnology/shields-api",
"version": "0.1.0",
"types": "./dist/typechain/index.d.ts",
"scripts": {
"build": "yarn build:contracts && yarn build:package",
"prepublishOnly": "yarn build",
"test": "hardhat test",
"coverage": "hardhat coverage",
"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": "yarn build && ts-node scripts/deploy.ts --chainId 4 && cp -R addresses dist",
"verify": "yarn build && ts-node scripts/verify.ts --chainId 4"
},
"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",
"@rari-capital/solmate": "^6.0.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/get-pixels": "^3.3.2",
"@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",
"get-pixels": "^3.3.3",
"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",
"hardhat-watcher": "^2.1.1",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.27",
"mocha": "^9.1.3",
"mocha-chai-jest-snapshot": "^1.1.3",
"mocha-steps": "^1.3.0",
"solidity-coverage": "^0.7.17",
"ts-node": "^10.4.0",
"typechain": "^6.0.5",
"typescript": "^4.5.4"
},
"dependencies": {
"@areatechnology/shields-api": "^0.0.1",
"base64-sol": "^1.1.0"
}
}