forked from matter-labs/zksync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "zksync-root",
"version": "1.0.0",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"sdk/zksync.js",
"sdk/zksync-crypto",
"contracts",
"infrastructure/zk",
"infrastructure/reading-tool",
"infrastructure/token-lists-manager",
"infrastructure/api-docs",
"core/tests/ts-tests"
]
},
"scripts": {
"build:zksync-sdk": "yarn zksync prepublish",
"build:crypto": "yarn crypto build",
"build:reading-tool": "yarn reading-tool build",
"zksync": "yarn workspace zksync",
"crypto": "yarn workspace zksync-crypto",
"contracts": "yarn workspace franklin-contracts",
"ts-tests": "yarn workspace ts-tests",
"zk": "yarn workspace zk",
"reading-tool": "yarn workspace reading-tool",
"api-docs": "yarn workspace api-docs"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.16.0",
"eslint-config-alloy": "^3.8.2",
"markdown-toc": "^1.2.0",
"markdownlint-cli": "^0.24.0",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-alpha.60",
"solhint": "^3.3.2"
}
}