forked from w3f/1k-validators-be
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.11 KB
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
{
"name": "1k-validators-be",
"packageManager": "yarn@3.2.2",
"private": true,
"workspaces": [
"packages/common",
"packages/core",
"packages/gateway",
"packages/telemetry"
],
"scripts": {
"create-config:all": "yarn workspaces foreach create-config",
"docker:start": "yarn build:clean && docker-compose up -d --build",
"lint": "yarn workspaces foreach run lint",
"lint:fix": "yarn workspaces foreach run lint:fix",
"clean": "yarn workspaces foreach run clean && rm -r node_modules/ ",
"build": "yarn workspaces foreach run build",
"build:clean": "yarn workspaces foreach run clean:build",
"start:dev:gateway": "yarn workspace @1kv/gateway run start:dev",
"start:dev:core": "yarn workspace @1kv/core run start:dev",
"start:dev:telemetry": "yarn workspace @1kv/telemetry run start:dev"
},
"devDependencies": {
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1"
}
}