forked from norges-bank/cbdc-sandbox-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 3.07 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
{
"name": "nb-sandbox-contracts",
"author": "Nahmii AS",
"version": "0.1.0",
"license": "Apache-2.0",
"scripts": {
"add_CBSToken_Minter": "hardhat run scripts/add_CBSToken_Minter.ts --network $NETWORK",
"add_CBSToken_Operator": "hardhat run scripts/add_CBSToken_Operator.ts --network $NETWORK",
"build": "hardhat compile",
"clean": "hardhat clean",
"deploy_CBToken": "hardhat run scripts/deploy_CBToken.ts --network $NETWORK",
"deploy_CBSToken": "hardhat run scripts/deploy_CBSToken.ts --network $NETWORK",
"deploy_TokenSwap": "hardhat run scripts/deploy_TokenSwap.ts --network $NETWORK",
"deploy_All_Tokens": "hardhat run scripts/deploy_All_Tokens.ts --network $NETWORK",
"deploy_DisperseWithData": "hardhat run scripts/deploy_DisperseWithData.ts --network $NETWORK",
"deploy_ERC1820Registry": "hardhat deploy:erc1820registry --network $NETWORK",
"grant_Access": "hardhat run scripts/grant_Access.ts --network $NETWORK",
"issue_ERC1400": "hardhat run scripts/issue_ERC1400.ts --network $NETWORK",
"lint": "npm run lint:fix && npm run lint:check",
"lint:check": "npm run lint:contracts:check && npm run lint:ts:check",
"lint:contracts:check": "solhint -f table 'contracts/**/*.sol'",
"lint:contracts:fix": "prettier --write 'contracts/**/*.sol'",
"lint:fix": "npm run lint:contracts:fix && npm run lint:ts:fix",
"lint:ts:check": "eslint . --max-warnings=0 --ext=.ts,.js",
"lint:ts:fix": "eslint . --fix --ext=.ts,.js",
"operator_Redeem_ERC1400": "hardhat run scripts/operator_Redeem_ERC1400.ts --network $NETWORK",
"prepare": "husky install",
"test": "hardhat test"
},
"devDependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@types/chai": "^4.3.3",
"@types/debug": "^4.1.7",
"@types/mocha": "^10.0.0",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"chai": "^4.3.6",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.1",
"hardhat": "^2.11.2",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-erc1820": "^0.1.0",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@banteg/disperse-research": "github:banteg/disperse-research",
"@consensys/universal-token": "github:ConsenSys/UniversalToken",
"@openzeppelin/contracts": "^4.2.0"
}
}