-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 857 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 857 Bytes
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
{
"name": "easy-track",
"version": "1.0.0",
"repository": "git@github.com:lidofinance/easy-track.git",
"author": "Bogdan Kovtun <psirex48@gmail.com>",
"license": "GPL-3.0",
"packageManager": "npm@10.5.0",
"dependencies": {
"@openzeppelin/contracts-v4.3.2": "npm:@openzeppelin/contracts@4.3.2",
"ethlint": "^1.2.5",
"hardhat": "2.25.0",
"husky": "^6.0.0",
"prettier": "^2.3.0",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"pretty-quick": "^3.1.0"
},
"scripts": {
"lint": "pretty-quick --pattern '**/*.*(sol|json)' --verbose",
"lint:check": "prettier --check **/*.sol **/*.json",
"lint:fix": "pretty-quick --pattern '**/*.*(sol|json)' --staged --verbose"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix"
}
},
"devDependencies": {
"recursive-copy": "^2.0.13"
}
}