forked from CMTA/CMTAT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 4.51 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
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
99
100
101
102
{
"name": "CMTAT",
"version": "0.1.0",
"description": "CMTA smart contracts",
"files": [
"contracts",
"test"
],
"scripts": {
"deploy:mainnet": "npx hardhat run scripts/1_deploy_contracts.js --network mainnet",
"verify:mainnet": "npx hardhat run scripts/2_verify_contracts.js --network mainnet",
"deploy:holesky": "npx hardhat run scripts/1_deploy_contracts.js --network holesky",
"verify:holesky": "npx hardhat run scripts/2_verify_contracts.js --network holesky",
"deploy:polygon": "npx hardhat run scripts/1_deploy_contracts.js --network polygon",
"verify:polygon": "npx hardhat run scripts/2_verify_contracts.js --network polygon",
"deploy:sepolia": "npx hardhat run scripts/1_deploy_contracts.js --network sepolia",
"verify:sepolia": "npx hardhat run scripts/2_verify_contracts.js --network sepolia",
"deploy:arbitrumTestnet": "npx hardhat run scripts/1_deploy_contracts.js --network arbitrumTestnet",
"verify:arbitrumTestnet": "npx hardhat run scripts/2_verify_contracts.js --network arbitrumTestnet",
"deploy:baseTestnet": "npx hardhat run scripts/1_deploy_contracts.js --network baseTestnet",
"verify:baseTestnet": "npx hardhat run scripts/2_verify_contracts.js --network baseTestnet",
"test": "npx hardhat test",
"lint:js": "npx eslint .",
"lint:js:fix": "npx eslint . --fix",
"lint:sol": "npx solhint 'contracts/**/*.sol'",
"lint:sol:fix": "npx solhint 'contracts/**/*.sol' --fix",
"lint:all": "npm run lint:js && npm run lint:sol",
"lint:all:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"lint:sol:prettier": "npx prettier --write 'contracts/**/*.sol'",
"lint:js:prettier": "npx prettier --write '**/*.js'",
"console": "npx hardhat console",
"coverage": "npx hardhat coverage",
"docgen": "npx hardhat docgen",
"uml": "npx sol2uml class contracts -c",
"uml-partial": "npx sol2uml class contracts -c -b CMTAT_BASE",
"uml-modules-mandatory": "npx sol2uml class contracts -c -b BaseModule && npx sol2uml class contracts -c -b BurnModule && npx sol2uml class contracts -c -b ERC20BaseModule && npx sol2uml class contracts -c -b MintModule && npx sol2uml class contracts -c -b PauseModule",
"uml-modules-security": "npx sol2uml class contracts -c -b AuthorizationModule",
"uml-mocks": "npx sol2uml class -c contracts/mocks/RuleEngine",
"size": "npx hardhat size-contracts",
"test:pause": "npx hardhat test test/proxy/modules/PauseModule.test.js",
"test:mint": "npx hardhat test test/proxy/modules/MintModule.test.js",
"test:burn": "npx hardhat test test/proxy/modules/BurnModule.test.js",
"test:authorization": "npx hardhat test test/proxy/modules/AuthorizationModule/AuthorizationModule.test.js test/proxy/modules/AuthorizationModule/TransferAdminship.test.js",
"test:base": "npx hardhat test test/proxy/modules/BaseModule.test.js",
"test:erc20Base": "npx hardhat test test/proxy/modules/ERC20BaseModule.test.js",
"test:deployment": "npx hardhat test test/deployment/*.test.js",
"test:general": "npx hardhat test test/proxy/general/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/CMTA/CMTAT.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"scai"
],
"author": "CMTA",
"license": "MPL",
"bugs": {
"url": "https://github.com/CMTA/CMTAT/issues"
},
"homepage": "https://github.com/CMTA/CMTAT",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@openzeppelin/hardhat-upgrades": "^2.4.3",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^8.38.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"ethereumjs-util": "^7.1.5",
"ethjs-abi": "^0.2.1",
"ethlint": "^1.2.5",
"hardhat": "^2.19.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^3.1.0",
"prettier-plugin-solidity": "^1.2.0",
"sol2uml": "^2.5.4",
"solc": "^0.8.19",
"solgraph": "^1.0.2",
"solhint-community": "^3.7.0",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.2",
"solidity-docgen": "^0.6.0-beta.35",
"surya": "^0.4.6"
},
"dependencies": {
"@metamask/eth-sig-util": "^5.1.0",
"@openzeppelin/contracts": "4.8.1"
}
}