-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
70 lines (70 loc) · 2.49 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
{
"name": "pns-protocol",
"license": "MIT",
"scripts": {
"clean": "hardhat clean",
"deploy": "npx hardhat run scripts/deploy.ts",
"commit": "git-cz",
"prettify": "npx prettier '**/*.{json,sol,md,ts}' --write",
"compile": "hardhat compile",
"coverage": "cross-env CODE_COVERAGE=true hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.ts\"",
"test": "npx hardhat test",
"deploy:localhost": "npx hardhat run --network hardhat scripts/deploy.ts",
"deploy:bnb_testnet": "npx hardhat run --network bnb_testnet scripts/deploy.ts",
"deploy:ethereum_goerli": "npx hardhat run --network ethereum_goerli scripts/deploy.ts",
"prepare": "husky install"
},
"devDependencies": {
"@codechecks/client": "^0.1.11",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-signer": "^5.4.1",
"@ethersproject/bignumber": "^5.4.1",
"@ethersproject/bytes": "^5.4.0",
"@ethersproject/providers": "^5.7.1",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts-upgradeable": "^4.8.0-rc.1",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"ethers": "^5.7.1",
"fs-extra": "^10.0.0",
"hardhat": "^2.10.2",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.0",
"lint-staged": "^11.1.2",
"mocha": "^9.0.3",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"pretty-quick": "^3.1.3",
"shelljs": "^0.8.4",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.7.4",
"web3": "^1.5.2"
},
"dependencies": {
"@chainlink/contracts": "^0.5.1",
"@openzeppelin/contracts": "^4.7.3",
"eip-712": "^1.0.0",
"ethereumjs-util": "^7.1.5"
}
}