-
Notifications
You must be signed in to change notification settings - Fork 417
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.66 KB
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
42
43
44
45
46
47
48
{
"name": "era-contracts",
"version": "0.1.0",
"private": true,
"workspaces": {
"packages": [
"l1-contracts",
"l2-contracts",
"da-contracts",
"system-contracts",
"gas-bound-caller"
],
"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": "^5.1.0"
},
"scripts": {
"calculate-hashes:check": "ts-node scripts/calculate-hashes.ts --check-only",
"calculate-hashes:fix": "ts-node scripts/calculate-hashes.ts",
"calculate-hashes:rebuild-and-fix": "./recompute_hashes.sh",
"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",
"da": "yarn workspace da-contracts",
"gas-bound-caller": "yarn workspace gas-bound-caller"
}
}