-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.04 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
{
"private": true,
"workspaces": [
"packages/stepdoc",
"packages/library"
],
"scripts": {
"build": "yarn workspaces run build",
"docs": "yarn workspace @jambit/wdio-cucumber-selected-steps docs",
"lint": "yarn run lint:es && yarn run lint:package",
"lint:es": "eslint 'packages/*/src/**/*.ts' --ext ts",
"lint:es:fix": "eslint 'packages/*/src/**/*.ts' --fix --ext ts",
"lint:fix": "yarn run lint:es:fix && yarn run lint:package:fix",
"lint:package": "yarn run lint:package:fix --check",
"lint:package:fix": "sort-package-json package.json 'packages/*/package.json'",
"release": "lerna publish"
},
"resolutions": {
"module-deps-sortable": "5.0.1",
"trim-newlines": "3.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"lerna": "^4.0.0",
"sort-package-json": "^1.51.0"
}
}