-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.63 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.63 KB
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
{
"name": "cross-chain-token",
"license": "MIT",
"version": "1.0.11",
"description": "Parallel cross chain token implementation, base on XERC20",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"artifacts/abi",
"deployments"
],
"publishConfig": {
"access": "public"
},
"repository": "git@github.com:para-space/cross-chain-token.git",
"devDependencies": {
"@ethersproject/bytes": "^5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.1",
"@nomicfoundation/hardhat-ethers": "^3.0.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.1",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"@types/mocha": "^9.1.0",
"@types/node": "^18.11.9",
"@types/yargs": "^17.0.22",
"chai": "^4.2.0",
"dotenv": "^16.0.3",
"ethers": "^6.6.0",
"hardhat": "^2.15.0",
"hardhat-gas-reporter": "^1.0.9",
"pre-commit": "^1.2.2",
"prettier": "^2.6.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.6.4"
},
"scripts": {
"lint": "prettier \"./**\" --write",
"build": "hardhat compile",
"deploy": "hardhat run script/deploy/deploy.ts",
"size": "hardhat size-contracts",
"abi": "hardhat export-abi",
"test": "hardhat test ./test/*.ts"
},
"pre-commit": [
"lint",
"compile"
],
"dependencies": {
"@openzeppelin/contracts": "^4.9.5",
"@openzeppelin/contracts-upgradeable": "^4.9.5"
}
}