forked from matter-labs/era-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.31 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
40
41
{
"name": "era-contracts",
"version": "0.1.0",
"private": true,
"workspaces": {
"packages": [
"l1-contracts",
"l2-contracts",
"system-contracts"
],
"nohoist": [
"**/@openzeppelin/**"
]
},
"devDependencies": {
"@matterlabs/eslint-config-typescript": "^1.1.2",
"@matterlabs/prettier-config": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint": "^8.51.0",
"markdownlint-cli": "^0.33.0",
"prettier-plugin-solidity": "^1.1.3",
"prettier": "^3.0.3",
"solhint": "^3.6.2"
},
"scripts": {
"lint:check": "yarn lint:md && yarn lint:sol && yarn lint:ts && yarn prettier:check",
"lint:fix": "yarn lint:md --fix && yarn lint:sol --fix && yarn lint:ts --fix && yarn prettier:fix",
"lint:md": "markdownlint \"**/*.md\"",
"lint:sol": "solhint \"**/*.sol\"",
"lint:ts": "eslint .",
"prettier:check": "prettier --check \"**/*.{js,json,md,sol,ts,yaml}\"",
"prettier:fix": "prettier --write \"**/*.{js,json,md,sol,ts,yaml}\"",
"l1": "yarn workspace l1-contracts",
"l2": "yarn workspace l2-contracts",
"sc": "yarn workspace system-contracts"
}
}