-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 824 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 824 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,
"scripts": {
"start": "lerna run start --stream --parallel",
"build": "lerna run build --stream --parallel",
"graph": "npx nx graph",
"lint": "eslint packages/**/src/**/*.ts[x]",
"bootstrap": "lerna exec npm install",
"bootstrap:ci": "lerna exec npm ci",
"docker:build": "docker build -t busit/pipelines .",
"docker:start": "docker run --name pipelines -p 3000:3000 busit/pipelines:latest"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"lerna": "^6.4.1",
"prettier": "^2.8.4"
}
}