forked from ChainSafe/hardhat-plugin-multichain-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "root",
"private": true,
"author": "ChainSafe <[email protected]>",
"license": "(MIT)",
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"packages/*",
"example"
]
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "yarn build:pakages && yarn build:example",
"lint": "yarn workspaces foreach -vpt run lint",
"test": "yarn workspaces foreach -vpt run test",
"test:unit": "yarn workspaces foreach -vpt run test:unit",
"test:integrations": "yarn workspaces foreach -vpt run test:integrations",
"build:pakages": "yarn workspaces foreach -vpt --no-private run build",
"build:example": "yarn workspace multichain-deploy-example run build"
},
"devDependencies": {
"@chainsafe/eslint-config": "^1.1.0",
"@rushstack/eslint-patch": "^1.2.0",
"@types/chai": "^4",
"@types/eslint": "^8.37.0",
"@types/node": "18.15.11",
"chai": "^4.2.0",
"eslint": "8.37.0",
"typescript": "^5.0.3"
},
"resolutions": {
"ethereumjs-abi": "https://registry.npmjs.org/ethereumjs-abi/-/ethereumjs-abi-0.6.8.tgz"
}
}