-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "root",
"private": true,
"version": "1.0.0",
"scripts": {
"start": "mono-run start:dev --stream 500",
"bootstrap": "lerna bootstrap",
"lint:services": "eslint services/*-service",
"lint:libs": "eslint libs/**",
"new-version": "lerna version --exact --include-merged-tags",
"publish-latest": "lerna publish from-package --yes",
"test:libs": "lerna run --scope @vl/* --no-bail lerna:test",
"diff": "lerna diff"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"cross-env": "7.0.3",
"eslint": "8.17.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"lerna": "5.0.0",
"monorepo-run": "0.4.2",
"prettier": "2.6.2",
"typescript": "4.3.5"
},
"workspaces": [
"services/*",
"libs/*"
]
}