forked from matter-labs/zksync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.66 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": [
"sdk/zksync.js",
"contracts",
"infrastructure/analytics",
"infrastructure/fee-seller",
"infrastructure/sdk-test-vector-generator",
"infrastructure/zcli",
"infrastructure/explorer",
"infrastructure/zk",
"core/tests/ts-tests"
],
"nohoist": [
"**/@vue/**",
"**/vue-template-compiler/**",
"**/bootstrap-vue/**",
"**/@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",
"lint:md": "markdownlint $(find . -name '*.md' -print -o -path '*/node_modules' -prune)",
"lint:sol": "solhint contracts/{,dev-}contracts{,/**}/*.sol",
"lint:js": "eslint $(find . -name '*.js' | grep -v 'node_modules\\|build\\|dist\\|.tslintrc.js')",
"lint:ts": "eslint --ext ts --no-eslintrc -c .tslintrc.js $(find . -name '*.ts' | grep -v 'node_modules\\|build\\|dist')"
},
"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",
"markdownlint-cli": "^0.24.0",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-alpha.60",
"solhint": "^3.3.2"
}
}