forked from hoprnet/hoprnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 939 Bytes
/
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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"setup": "lerna bootstrap",
"build": "yarn util:build",
"build:core": "lerna exec --scope @hoprnet/hopr-core yarn build",
"lint": "npx prettier --check .",
"lint:fix": "npx prettier --write .",
"test": "lerna run test --stream",
"test:core": "yarn build:core && lerna exec --scope @hoprnet/hopr-core yarn test",
"run:hoprd": "lerna exec --scope @hoprnet/hoprd -- yarn start",
"util:clean": "lerna exec --stream -- rimraf node_modules/@hoprnet",
"util:reset": "lerna clean --yes",
"util:build": "lerna exec --stream -- yarn build",
"util:link": "lerna link"
},
"dependencies": {
"lerna": "^3.22.1"
},
"devDependencies": {
"rimraf": "^3.0.2"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 120,
"trailingComma": "none"
}
}