-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.53 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
{
"name": "@tokenlon/contracts-lib",
"version": "0.0.2",
"author": "imToken Labs",
"homepage": "https://github.com/consenlabs/tokenlon-contracts-lib-js",
"keywords": [
"tokenlon",
"contract",
"signing",
"encoding"
],
"license": "MIT",
"scripts": {
"build": "tsc -p ./tsconfig.build.json && tsc-alias -p ./tsconfig.build.json && cp LICENSE package.json README.md dist",
"compile-sol": "hardhat compile",
"lint": "eslint --ignore-path .prettierignore \"./**/*.ts\" && prettier --check .",
"test": "hardhat test"
},
"devDependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.3",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@tsconfig/recommended": "^1.0.1",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-prettier": "^4.0.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.6.8",
"hardhat": "^2.9.9",
"prettier": "^2.7.1",
"ts-node": "^10.8.1",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.0.0",
"typechain": "^8.1.0",
"typescript": "^4.7.3"
},
"peerDependencies": {
"ethers": "^5.0.0"
}
}