-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
87 lines (87 loc) · 3.2 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
{
"name": "@tokenf/contracts",
"version": "0.2.0",
"license": "MIT",
"author": "Distributed Lab",
"description": "On-chain Real World Assets Tokenization Framework",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/dl-tokenf/core-contracts"
},
"keywords": [
"solidity",
"ethereum",
"smart-contracts",
"tokenf",
"rwa",
"distributedlab"
],
"files": [
"**/*.sol",
"!mock/**/*"
],
"scripts": {
"prepare": "husky",
"compile": "npx hardhat compile",
"coverage": "npx hardhat coverage --solcoverjs ./.solcover.ts",
"clean": "npx hardhat clean",
"test": "npx hardhat test",
"test-all": "npm run deploy-localhost && npm run test",
"private-network": "npx hardhat node",
"private-network-fork": "npx hardhat node --fork https://mainnet.infura.io/v3/$(grep INFURA_KEY .env | cut -d '\"' -f2)",
"deploy-localhost": "npx hardhat migrate --network localhost",
"deploy-goerli": "npx hardhat migrate --network goerli --verify",
"deploy-sepolia": "npx hardhat migrate --network sepolia --verify",
"deploy-chapel": "npx hardhat migrate --network chapel --verify",
"deploy-mumbai": "npx hardhat migrate --network mumbai --verify",
"deploy-fuji": "npx hardhat migrate --network fuji --verify",
"deploy-ethereum": "npx hardhat migrate --network ethereum --verify",
"deploy-bsc": "npx hardhat migrate --network bsc --verify",
"deploy-polygon": "npx hardhat migrate --network polygon --verify",
"deploy-avalanche": "npx hardhat migrate --network avalanche --verify",
"generate-types": "TYPECHAIN_FORCE=true npx hardhat typechain && npx hardhat gobind",
"generate-docs": "npx hardhat markup",
"lint-fix": "npm run lint-sol-fix && npm run lint-ts-fix && npm run lint-json-fix",
"lint-json-fix": "prettier --write \"./**/*.json\"",
"lint-ts-fix": "prettier --write \"./**/*.ts\"",
"lint-sol-fix": "prettier --write \"./**/*.sol\"",
"publish-to-npm": "npm run lint-fix && bash ./scripts/publish.sh --public"
},
"dependencies": {
"@openzeppelin/contracts": "4.9.5",
"@openzeppelin/contracts-upgradeable": "4.9.5",
"@solarity/solidity-lib": "2.7.2"
},
"devDependencies": {
"@metamask/eth-sig-util": "^7.0.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@solarity/hardhat-gobind": "^1.2.2",
"@solarity/hardhat-markup": "^1.0.7",
"@solarity/hardhat-migrate": "^2.1.5",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^18.16.0",
"dotenv": "^16.3.1",
"hardhat": "2.20.1",
"typechain": "^8.3.2",
"bignumber.js": "^9.1.2",
"chai": "^4.3.10",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^9.0.11",
"mocha": "^10.2.0",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.0.0",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.11",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
}
}