-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
100 lines (100 loc) · 4.08 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
{
"name": "@masa-finance/masa-contracts-identity",
"version": "1.15.1",
"main": "dist/typechain/index.js",
"types": "dist/typechain/index.d.ts",
"repository": "git@github.com:masa-finance/masa-contracts-identity.git",
"author": "Sebastian Gerske <13647606+H34D@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"compile": "hardhat compile",
"postcompile": "yarn flatten",
"tsc": "npx tsc -p . && cp typechain/*.d.ts dist/typechain/",
"build": "yarn compile && yarn tsc",
"clean": "hardhat clean",
"docgen": "hardhat dodoc",
"coverage": "hardhat coverage",
"deploy:alfajores": "hardhat deploy --network alfajores && yarn addresses",
"deploy:base": "hardhat deploy --network base && yarn addresses",
"deploy:basegoerli": "hardhat deploy --network basegoerli && yarn addresses",
"deploy:bsc": "hardhat deploy --network bsc && yarn addresses",
"deploy:bsctest": "hardhat deploy --network bsctest && yarn addresses",
"deploy:celo": "hardhat deploy --network celo && yarn addresses",
"deploy:sepolia": "hardhat deploy --network sepolia && yarn addresses",
"deploy:ethereum": "hardhat deploy --network ethereum && yarn addresses",
"deploy:mumbai": "hardhat deploy --network mumbai && yarn addresses",
"deploy:polygon": "hardhat deploy --network polygon && yarn addresses",
"deploy:opbnbtest": "hardhat deploy --network opbnbtest && yarn addresses",
"deploy:opbnb": "hardhat deploy --network opbnb && yarn addresses",
"deploy:scrolltest": "hardhat deploy --network scrolltest && yarn addresses",
"deploy:scroll": "hardhat deploy --network scroll && yarn addresses",
"deploy:masatest": "hardhat deploy --network masatest && yarn addresses",
"deploy:masa": "hardhat deploy --network masa && yarn addresses",
"deployASBT": "hardhat run src/deployASBT.ts",
"deploySSSBT": "hardhat run src/deploySSSBT.ts",
"deployDynamicSSSBT": "hardhat run src/deployDynamicSSSBT.ts",
"run:node": "hardhat node",
"test": "hardhat test",
"prettier": "prettier --write 'contracts/**/*.sol' '**/*.ts'",
"solhint": "solhint contracts/**/*.sol",
"release": "GITHUB_TOKEN=$(grep GITHUB_TOKEN .env | cut -d '=' -f2) release-it",
"addresses": "hardhat run src/addresses.ts",
"check-protocol-fee": "hardhat run src/check-protocol-fee.ts",
"flatten": "yarn flatten:asbt && yarn flatten:sssbt",
"flatten:asbt": "hardhat flatten contracts/reference/ReferenceSBTAuthority.sol > contracts/reference/ReferenceSBTAuthorityFlattened.sol",
"flatten:sssbt": "hardhat flatten contracts/reference/ReferenceSBTSelfSovereign.sol > contracts/reference/ReferenceSBTSelfSovereignFlattened.sol"
},
"dependencies": {
"ethers": "~5.7.2"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@nomiclabs/hardhat-solhint": "^4.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "^4.9.6",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@typechain/ethers-v5": "^11.1.2",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.14",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.0",
"@types/sinon-chai": "^3.2.12",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.2",
"chai-ethers": "^0.0.1",
"envfile": "^7.1.0",
"ethereum-waffle": "^4.0.10",
"hardhat": "^2.22.9",
"hardhat-deploy": "^0.12.4",
"hardhat-deploy-ethers": "^0.4.2",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^2.2.1",
"hardhat-waffle": "^0.0.1-security",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"release-it": "^17.6.0",
"solhint": "^5.0.3",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.12",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.5.4"
},
"release-it": {
"hooks": {
"after:bump": "yarn build"
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
}
}