forked from KYVENetwork/kyve
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 720 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 720 Bytes
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
{
"name": "root",
"private": true,
"devDependencies": {
"@commitlint/cli": "^12.1.3",
"@commitlint/config-conventional": "^12.1.3",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"typescript": "^4.2.4"
},
"scripts": {
"setup": "yarn --ignore-engines && yarn fmt && yarn build && lerna bootstrap",
"build": "yarn clean && lerna run build",
"build:changed": "lerna run --since origin/master --include-dependents build",
"test": "lerna run test",
"fmt": "prettier --write .",
"clean": "lerna run --parallel clean"
},
"workspaces": [
"common/*",
"contract/*",
"integrations/*"
]
}