-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.67 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
{
"name": "@tokene/kyc-requests-contracts",
"version": "1.1.0",
"license": "MIT",
"author": "Distributed Lab",
"description": "The TokenE KYC module smart contract",
"repository": {
"type": "git",
"url": "https://github.com/dl-tokene/kyc-requests-contracts"
},
"keywords": [
"solidity",
"ethereum",
"smart-contracts",
"tokene",
"distributedlab"
],
"scripts": {
"install": "npx husky install",
"compile": "npx hardhat compile --force",
"coverage": "npx hardhat coverage --solcoverjs ./.solcover.ts",
"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-dev": "npx hardhat migrate --network dev",
"deploy-sepolia": "npx hardhat migrate --network sepolia --verify true --confirmations 4",
"deploy-chapel": "npx hardhat migrate --network chapel --verify true --confirmations 1",
"deploy-ethereum": "npx hardhat migrate --network ethereum --verify true --confirmations 4",
"deploy-bsc": "npx hardhat migrate --network bsc --verify true --confirmations 2",
"generate-types": "TYPECHAIN_FORCE=true npx hardhat typechain",
"generate-docs": "npx hardhat markup",
"solhint-check": "solhint \"./contracts/**/*.sol\"",
"lint-fix": "npm run lint-sol-fix && npm run lint-ts-fix && npm run lint-json-fix && npm run solhint-check",
"lint-json-fix": "prettier --write \"./[a-zA-Z0-9.]+(?!-lock).json\"",
"lint-ts-fix": "prettier --write \"./**/*.ts\"",
"lint-sol-fix": "prettier --write --plugin=prettier-plugin-solidity contracts/**/*.sol"
},
"dependencies": {
"@openzeppelin/contracts": "4.9.6",
"@openzeppelin/contracts-upgradeable": "4.9.6",
"@solarity/solidity-lib": "2.7.10",
"@tokene/core-contracts": "^1.8.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@solarity/hardhat-markup": "1.0.8",
"@solarity/hardhat-migrate": "2.1.10",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/mocha": "^10.0.6",
"dotenv": "^16.4.5",
"hardhat": "^2.22.4",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^2.2.0",
"husky": "^9.0.11",
"node-vault": "^0.10.2",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^5.0.1",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.12",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typechain": "^8.3.2",
"typescript": "^5.4.5"
}
}