-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2.41 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@aip/multi-withdrawal-controller",
"version": "0.0.1",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"build:hardhat": "hardhat compile",
"build:typechain": "typechain --target ethers-v5 --out-dir build/types 'build/*.json'",
"build:mars": "pnpm exec mars",
"build:save-canary": "bash ./scripts/saveCanary.sh",
"build": "pnpm clean && pnpm build:hardhat && pnpm build:typechain && pnpm build:save-canary && pnpm build:mars",
"clean": "rm -rf ./build && hardhat clean",
"lint:prettier": "prettier './{contracts,test,features}/**/*.{ts,sol}' --cache",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:ts": "eslint '{test,features}/**/*.ts' --cache",
"lint:fix": "pnpm run lint:prettier --write --loglevel error && pnpm run lint:sol --fix && pnpm run lint:ts --fix",
"lint": "pnpm run lint:sol && pnpm run lint:prettier --check --loglevel error && pnpm run lint:ts",
"test:unit": "mocha 'test/**/*.test.ts'",
"test": "pnpm test:unit && pnpm test:feature",
"test:ci": "pnpm run test",
"test:feature": "cucumber-js || true",
"coverage": "hardhat coverage --testfiles test/contracts/**/*.test.ts",
"deploy:contracts": "bash ./scripts/guardedRun.sh",
"gas-report": "hardhat test test/**/*.gas-report.ts"
},
"prettier": "prettier-config-archblock/contracts.json",
"dependencies": {
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/contracts-upgradeable": "4.7.3"
},
"devDependencies": {
"@cucumber/cucumber": "^8.6.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/providers": "^5.7.1",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/mocha": "^10.0.0",
"@types/node": "^17.0.12",
"chai": "^4.3.6",
"eslint-config-archblock": "workspace:*",
"ethereum-mars": "0.2.6-dev.b8a1d6a",
"ethereum-waffle": "4.0.10",
"ethers": "^5.7.1",
"hardhat": "^2.15.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-waffle-dev": "2.0.5-dev.ffdc567",
"mocha": "^10.0.0",
"prettier-config-archblock": "workspace:*",
"solc": "^0.8.18",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"tsconfig": "workspace:*",
"tsconfig-paths": "^4.1.0",
"typechain": "^8.1.0",
"typescript": "^4.9.4"
}
}