We want to lint the e2e tests, we export the eslint config from the app desk to a package in order to use it for the e2e tests and for our apps.
27 lines
649 B
JSON
27 lines
649 B
JSON
{
|
|
"name": "people",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"workspaces": {
|
|
"packages": [
|
|
"apps/*",
|
|
"packages/*"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"APP_DESK": "yarn workspace app-desk",
|
|
"APP_E2E": "yarn workspace app-e2e",
|
|
"app:dev": "yarn APP_DESK run dev",
|
|
"app:start": "yarn APP_DESK run start",
|
|
"app:build": "yarn APP_DESK run build",
|
|
"app:test": "yarn APP_DESK run test",
|
|
"ci:build": "yarn APP_DESK run build:ci",
|
|
"e2e:test": "yarn APP_E2E run test",
|
|
"lint": "yarn APP_DESK run lint && yarn APP_E2E run lint"
|
|
},
|
|
"resolutions": {
|
|
"@types/node": "20.10.8",
|
|
"typescript": "5.3.3"
|
|
}
|
|
}
|