🚨(frontend) add lib eslint-config-impress

Create the eslint-config-impress package to share
eslint configuration with all impress projects.
This commit is contained in:
Anthony LC
2024-04-02 12:09:10 +02:00
parent c3e354d727
commit c64b66c797
10 changed files with 11635 additions and 0 deletions

31
src/frontend/package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "impress",
"version": "0.1.0",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
]
},
"scripts": {
"APP_IMPRESS": "yarn workspace app-impress",
"APP_E2E": "yarn workspace app-e2e",
"I18N": "yarn workspace packages-i18n",
"app:dev": "yarn APP_IMPRESS run dev",
"app:start": "yarn APP_IMPRESS run start",
"app:build": "yarn APP_IMPRESS run build",
"app:test": "yarn APP_IMPRESS run test",
"ci:build": "yarn APP_IMPRESS run build:ci",
"e2e:test": "yarn APP_E2E run test",
"lint": "yarn APP_IMPRESS run lint && yarn APP_E2E run lint && yarn workspace eslint-config-impress run lint && yarn I18N run lint",
"i18n:extract": "yarn I18N run extract-translation",
"i18n:deploy": "yarn I18N run format-deploy",
"i18n:test": "yarn I18N run test"
},
"resolutions": {
"@types/node": "20.12.2",
"@types/react-dom": "18.2.23",
"typescript": "5.4.3"
}
}