-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.2 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
{
"dependencies": {
"@ethersproject/hardware-wallets": "^5.6.0",
"chalk": "^5.0.1",
"dotenv": "^16.0.0",
"ethers": "^5.6.1",
"ora": "^6.1.0",
"readline": "^1.3.0"
},
"scripts": {
"lint": "yarn prettier && yarn solhint",
"lint:check": "yarn prettier:check && yarn solhint:check",
"prettier": "yarn prettier:check --write",
"prettier:check": "prettier --check \"src/**/*.sol\"",
"solhint": "yarn solhint:check --fix",
"solhint:check": "solhint --config ./.solhint.json \"src/**/*.sol\"",
"deploy": "node --experimental-json-modules scripts/deploy.js",
"deploy-fork": "export RPC_URL=http://127.0.0.1:8545 && node --experimental-json-modules scripts/deploy.js",
"deploy-op": "export RPC_URL=$OPTIMISM_RPC_URL && node --experimental-json-modules scripts/deploy.js"
},
"type": "module",
"devDependencies": {
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2021
},
"env": {
"node": true,
"es6": true
}
}
}