forked from zenlinkpro/zenlink-evm-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.28 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
{
"name": "@zenlink-dex/zenlink-evm-contracts",
"version": "0.0.3",
"license": "MIT",
"keywords": [
"zenlink",
"evm"
],
"types": "./types/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/zenlinkpro/zenlink-evm-contracts.git"
},
"files": [
"abi",
"artifacts",
"contracts",
"deployments",
"exports",
"types"
],
"engines": {
"node": ">=10"
},
"scripts": {
"test": "npx hardhat test",
"build": "npx hardhat compile",
"release": "bumpp",
"generate-merkle-root": "ts-node scripts/generate-merkle-root.ts",
"generate-merkle-root:example": "ts-node scripts/generate-merkle-root.ts --input scripts/merkle-distributor/example.json",
"verify-merkle-root": "ts-node scripts/verify-merkle-root.ts",
"verify-merkle-root:example": "ts-node scripts/verify-merkle-root.ts --input scripts/merkle-distributor/example_result.json",
"deploy": "npx hardhat deploy"
},
"dependencies": {
"dotenv": "^16.0.2"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.5",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.7.1",
"@openzeppelin/contracts-upgradeable": "^4.7.2",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.15",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"bumpp": "^8.2.1",
"chai": "^4.3.6",
"commander": "^8.2.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"ethereumjs-util": "^7.1.3",
"ethers": "^5.7.0",
"hardhat": "^2.11.0",
"hardhat-abi-exporter": "^2.0.8",
"hardhat-deploy": "^0.11.13",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-spdx-license-identifier": "^2.0.3",
"mocha": "^7.1.2",
"mocha-chai-jest-snapshot": "^1.1.3",
"solidity-coverage": "^0.8.0",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.8.2"
}
}