-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/KYVENetwork/kyvejs.git"
},
"workspaces": [
"common/*",
"integrations/*",
"tools/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"lerna": "^7.1.1",
"nx": "^14.4.3",
"prettier": "^2.3.0",
"rimraf": "^3.0.2"
},
"resolutions": {
"axios": "^0.27.2"
},
"scripts": {
"setup": "lerna clean && yarn install && lerna run build",
"graph": "yarn nx graph",
"build": "lerna run build",
"build:binaries": "lerna run build:binaries --concurrency 1",
"pub": "lerna run build && lerna publish",
"build:changed": "lerna run --since origin/master --include-dependents build",
"test": "lerna run test",
"test:unit": "lerna run test:unit",
"fmt": "prettier --write .",
"clean": "lerna run clean",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"custom-version": "yarn lerna version --conventional-commits=false"
},
"version": "0.0.0"
}