forked from matter-labs/zksync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.05 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
53
54
55
56
{
"name": "zksync-root",
"version": "1.0.0",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"sdk/zksync.js",
"contracts",
"infrastructure/analytics",
"infrastructure/fee-seller",
"infrastructure/zcli",
"infrastructure/explorer",
"infrastructure/zk",
"core/tests/ts-tests"
],
"nohoist": [
"**/@vue/**",
"**/babel-eslint/**",
"**/eslint/**",
"**/eslint-plugin-vue/**",
"**/vue-template-compiler/**",
"**/bootstrap-vue/**",
"**/@vue",
"**/babel-eslint",
"**/eslint",
"**/eslint-plugin-vue",
"**/vue-template-compiler",
"**/bootstrap-vue"
]
},
"scripts": {
"zksync": "yarn workspace zksync",
"contracts": "yarn workspace franklin-contracts",
"analytics": "yarn workspace analytics",
"fee-seller": "yarn workspace fee-seller",
"zcli": "yarn workspace zcli",
"ts-tests": "yarn workspace ts-tests",
"explorer": "yarn workspace sync-explorer",
"zk": "yarn workspace zk",
"fmt:ts": "find . -name '*.ts' -a ! -path '*/node_modules/*' -a ! -name '*.d.ts' | xargs prettier --config .prettier-ts.json --write",
"check:ts": "find . -name '*.ts' -a ! -path '*/node_modules/*' -a ! -name '*.d.ts' | xargs prettier --config .prettier-ts.json --check",
"fmt:md": "find . -name '*.md' -a ! -path '*/node_modules/*' | xargs prettier --config .prettier-md.json --write",
"check:md": "find . -name '*.md' -a ! -path '*/node_modules/*' | xargs prettier --config .prettier-md.json --check",
"lint:md": "markdownlint $(find . -name '*.md' -a ! -path '*/node_modules/*')",
"fmt:sol": "prettier --config .prettier-sol.json --write contracts/{dev-,}contracts/**/*.sol",
"check:sol": "prettier --config .prettier-sol.json --check contracts/{dev-,}contracts/**/*.sol",
"lint:sol": "solhint contracts/{dev-,}contracts/**/*.sol"
},
"devDependencies": {
"markdownlint-cli": "^0.24.0",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.60",
"solhint": "^3.3.2"
}
}