-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
package.json
26 lines (26 loc) · 1.81 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
{
"name": "root",
"version": "0.0.0",
"author": "Nomic Labs LLC",
"license": "SEE LICENSE IN EACH PACKAGE'S LICENSE FILE",
"private": true,
"devDependencies": {
"@changesets/cli": "^2.16.0",
"@open-rpc/typings": "^1.12.1",
"hardhat": "workspace:*",
"prettier": "2.4.1",
"shelljs": "^0.8.5",
"typescript": "~5.0.0"
},
"scripts": {
"postbuild": "cp packages/hardhat-core/src/internal/solidity/compiler/solcjs-runner.js packages/hardhat-core/internal/solidity/compiler/solcjs-runner.js",
"build": "tsc --build packages/hardhat-core packages/hardhat-ethers packages/hardhat-verify packages/hardhat-solhint packages/hardhat-solpp packages/hardhat-truffle4 packages/hardhat-truffle5 packages/hardhat-vyper packages/hardhat-web3 packages/hardhat-web3-v4 packages/hardhat-web3-legacy packages/hardhat-chai-matchers packages/hardhat-network-helpers packages/hardhat-toolbox packages/hardhat-foundry packages/hardhat-ledger packages/hardhat-viem packages/hardhat-toolbox-viem",
"watch": "tsc --build --watch packages/hardhat-core/src packages/hardhat-ethers packages/hardhat-verify packages/hardhat-solhint packages/hardhat-solpp packages/hardhat-truffle4 packages/hardhat-truffle5 packages/hardhat-vyper packages/hardhat-web3 packages/hardhat-web3-v4 packages/hardhat-web3-legacy packages/hardhat-chai-matchers packages/hardhat-network-helpers packages/hardhat-toolbox packages/hardhat-foundry packages/hardhat-ledger packages/hardhat-viem packages/hardhat-toolbox-viem",
"clean": "pnpm run --recursive clean",
"test": "node scripts/run-tests.js",
"lint": "pnpm run --recursive lint && pnpm prettier --check",
"lint:fix": "pnpm run --recursive lint:fix && pnpm prettier --write",
"prettier": "prettier *.md \"{docs,.github}/**/*.{md,yml,ts,js}\" \"scripts/**/*.js\""
},
"dependencies": {}
}