-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "path-registry",
"author": "Jan Benes",
"license": "GPL-2.0-or-later",
"files": [
"*.sol"
],
"devDependencies": {
"copyfiles": "^2.4.1",
"prettier": "^2.6.0",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"rimraf": "^3.0.2",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5"
},
"scripts": {
"prepublishOnly": "copyfiles -u 1 \"./src/**/*.sol\" --exclude \"./src/test/**/*.sol\" ./",
"postpublish": "rimraf ./*.sol",
"prepack": "yarn prepublishOnly",
"postpack": "yarn postpublish",
"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\""
},
"dependencies": {
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/smart-order-router": "^2.5.22",
"ethers": "^5.6.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}