-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.03 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
{
"name": "veriflex",
"version": "1.0a",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/**/*"
]
},
"scripts": {
"predev": "yarn prebuild",
"dev": "run-p dev:*",
"dev:app": "yarn workspace @zksbt/app dev",
"dev:contracts": "yarn workspace @zksbt/contracts dev",
"prebuild": "run-p prebuild:*",
"prebuild:contracts": "yarn workspace @zksbt/contracts build",
"build": "run-p build:*",
"build:app": "yarn workspace @zksbt/app build",
"test": "run-p test:*",
"test:contracts": "yarn workspace @zksbt/contracts test",
"lint": "run-p lint:*",
"lint:app": "yarn workspace @zksbt/app lint",
"lint:contracts": "yarn workspace @zksbt/contracts lint"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"wait-on": "^6.0.1"
},
"lint-staged": {
"*.{md,json}": "prettier --write",
"*.{ts,tsx,js,jsx}": "eslint --cache --fix"
}
}