-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.46 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.46 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@cardstack/upgrade-manager",
"version": "1.0.1",
"description": "Cardstack Smart Contract Upgrade Manager",
"repository": "github:cardstack/upgrade-manager",
"author": "Cardstack",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin"
],
"scripts": {
"compile": " ./node_modules/.bin/hardhat compile && ./node_modules/.bin/hardhat run ./src/copy-compilation-result.ts",
"recompile": "yarn clean && yarn compile",
"clean": "./node_modules/.bin/hardhat clean",
"lint:js": "./node_modules/.bin/eslint --max-warnings 0 .",
"lint:sol": "./node_modules/.bin/solhint ./contracts/\\*\\*/\\*.sol -w 0",
"lint": "yarn lint:js && yarn lint:sol && yarn lint:contract-size",
"test:plugin": "yarn build && mocha $INSPECT_FLAG --exit --recursive 'plugin-tests/**/*.test.ts'",
"test:plugin:inspect": "env INSPECT_FLAG='--inspect-brk' yarn test:plugin",
"test:sol": "./node_modules/.bin/hardhat test --typecheck",
"coverage": "env SILENCE_COMPILER_WARNINGS=true ./node_modules/.bin/hardhat coverage",
"lint:contract-size": "{ ./node_modules/.bin/hardhat size-contracts | tee /dev/fd/3 | grep -q 'exceed the size limit for mainnet deployment' && exit 1; } 3>&1 || echo 'All contracts within size limit'",
"test": "yarn test:sol && yarn test:plugin && yarn lint",
"build": "yarn compile && node_modules/.bin/tsc && cp *.sol.json ./dist/",
"watch": "tsc -w",
"prepublishOnly": "yarn clean && yarn build"
},
"files": [
"src",
"dist",
"contracts",
"LICENSE",
"README.md"
],
"devDependencies": {
"@ethersproject/providers": "^5.4.7",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.1.7",
"@types/fs-extra": "^5.0.4",
"@types/lodash": "^4.14.186",
"@types/mocha": "^5.2.6",
"@types/node": "^8.10.38",
"@types/test-console": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^5.7.2",
"hardhat": "^2.12.0",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.8",
"mocha": "^7.1.2",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"rmrf": "^2.0.4",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.1",
"test-console": "^2.0.0",
"ts-node": "^8.1.0",
"typechain": "^8.1.0",
"typescript": "^4.0.3"
},
"peerDependencies": {
"hardhat": "^2.0.0"
},
"dependencies": {
"@gnosis.pm/safe-contracts": "^1.3.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@openzeppelin/contracts-upgradeable": "^4.8.0-rc.1",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"@safe-global/safe-deployments": "^1.22.0",
"cli-table3": "^0.6.3",
"colors": "^1.4.0",
"cpr-promise": "^0.2.6",
"enquirer": "^2.3.6",
"evm-chains": "^0.2.0",
"fs-extra": "^10.1.0",
"lodash": "^4.17.21",
"trezor-cli-wallet-provider": "^1.0.7"
},
"publishConfig": {
"access": "public"
}
}