forked from matter-labs/zksync-era
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.48 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "zksync-root",
"version": "1.0.0",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"contracts",
"contracts/l1-contracts",
"contracts/l2-contracts",
"contracts/system-contracts",
"etc/contracts-test-data",
"etc/ERC20",
"etc/utils",
"infrastructure/zk",
"infrastructure/local-setup-preparation",
"core/tests/revert-test",
"core/tests/recovery-test",
"core/tests/upgrade-test",
"core/tests/ts-integration",
"infrastructure/protocol-upgrade"
],
"nohoist": [
"**/@types/jest",
"**/@types/jasmine"
]
},
"scripts": {
"local-prep": "yarn workspace local-setup-preparation",
"l1-contracts": "yarn workspace l1-contracts",
"l2-contracts": "yarn workspace l2-contracts",
"revert-test": "yarn workspace revert-test",
"upgrade-test": "yarn workspace upgrade-test",
"recovery-test": "yarn workspace recovery-test",
"ts-integration": "yarn workspace ts-integration",
"utils": "yarn workspace utils",
"zk": "yarn workspace zk"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^4.10.0",
"babel-eslint": "^10.1.0",
"eslint-config-alloy": "^3.8.2",
"eslint": "^7.16.0",
"markdownlint-cli": "^0.24.0",
"npm-run-all": "^4.1.5",
"prettier-plugin-solidity": "=1.0.0-dev.22",
"prettier": "^2.3.2",
"solhint": "^3.3.2",
"sql-formatter": "^13.1.0"
}
}