-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "@layerzerolabs/sdk",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lerna": "lerna",
"build": "lerna run build --stream",
"test": "lerna run test --stream",
"watch": "lerna run watch --stream",
"publish:main": "lerna publish from-package",
"publish:dev": "lerna publish from-package --dist-tag dev --preid dev",
"lint": "prettier --write packages/**/**/*.ts && prettier --write packages/**/**/**/*.ts"
},
"description": "LayerZero Labs SDKs",
"main": "index.js",
"dependencies": {
"@types/node": "^16.9.1",
"lerna": "^4.0.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"ethers": "^5.4.7",
"hardhat": "2.8.2",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-deploy": "^0.10.5",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.6",
"prettier": "^2.6.2",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
},
"engines": {
"node": ">=12.0.0"
},
"packageManager": "[email protected]"
}