forked from matter-labs/zksync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
53
54
55
{
"name": "zksync-root",
"version": "1.0.0",
"license": "MIT",
"private": true,
"prettier": {
"tabWidth": 4,
"printWidth": 120,
"parser": "typescript",
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": 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": "find . -name '*.ts' -a ! -path '*/node_modules/*' -a ! -name '*.d.ts'| xargs prettier --write",
"check-fmt": "find . -name '*.ts' -a ! -path '*/node_modules/*' -a ! -name '*.d.ts'| xargs prettier --check"
},
"devDependencies": {
"prettier": "^2.1.2"
}
}