Commits on Source (6)
-
Bastien DUMONT authored
-
Bastien DUMONT authored
chore: remove unused libs & exports See merge request !112
-
Bastien DUMONT authored
-
Bastien DUMONT authored
-
Bastien DUMONT authored
-
Bastien DUMONT authored
chore: linting See merge request !110
Showing
- .eslintrc.js 27 additions, 1 deletion.eslintrc.js
- .prettierrc 2 additions, 1 deletion.prettierrc
- .vscode/settings.json 3 additions, 2 deletions.vscode/settings.json
- package.json 2 additions, 8 deletionspackage.json
- src/components/Consents/Consents.tsx 12 additions, 12 deletionssrc/components/Consents/Consents.tsx
- src/components/Navigation/BottomBar.tsx 1 addition, 1 deletionsrc/components/Navigation/BottomBar.tsx
- src/components/Navigation/SideBar.tsx 1 addition, 1 deletionsrc/components/Navigation/SideBar.tsx
- src/components/Newsletter/CustomEditor.tsx 1 addition, 1 deletionsrc/components/Newsletter/CustomEditor.tsx
- src/components/Newsletter/CustomLink.tsx 1 addition, 1 deletionsrc/components/Newsletter/CustomLink.tsx
- src/components/Newsletter/DateSelector/DateSelector.tsx 1 addition, 1 deletionsrc/components/Newsletter/DateSelector/DateSelector.tsx
- src/components/Newsletter/ImagePicker/ImagePicker.tsx 2 additions, 2 deletionssrc/components/Newsletter/ImagePicker/ImagePicker.tsx
- src/components/Newsletter/Newsletter.tsx 1 addition, 1 deletionsrc/components/Newsletter/Newsletter.tsx
- src/components/Popups/Popups.tsx 21 additions, 21 deletionssrc/components/Popups/Popups.tsx
- src/components/Prices/PriceRow.tsx 2 additions, 2 deletionssrc/components/Prices/PriceRow.tsx
- src/components/Prices/PriceSection.tsx 6 additions, 6 deletionssrc/components/Prices/PriceSection.tsx
- src/components/Routes/Router.tsx 1 addition, 1 deletionsrc/components/Routes/Router.tsx
- src/hooks/useAuth.ts 1 addition, 1 deletionsrc/hooks/useAuth.ts
- src/services/consent.service.ts 5 additions, 4 deletionssrc/services/consent.service.ts
- src/services/newsletter.service.ts 10 additions, 10 deletionssrc/services/newsletter.service.ts
- src/setupTests.ts 0 additions, 5 deletionssrc/setupTests.ts
... | ... | @@ -4,11 +4,11 @@ |
"private": true, | ||
"scripts": { | ||
"start": "react-scripts start", | ||
"build": "react-scripts build", | ||
"build": "CI=false && react-scripts build", | ||
"local-up": "docker-compose -f docker-compose.local.yml up -d && yarn start", | ||
"local-down": "docker-compose -f docker-compose.local.yml down", | ||
"docker": "docker run -it --rm -p 3000:3000 front-backoffice", | ||
"lint": "eslint .", | ||
"lint": "eslint src -c .eslintrc.js --fix", | ||
"lint:fix": "eslint --fix .", | ||
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,md}\"", | ||
"test": "react-scripts test", | ||
... | ... | @@ -27,7 +27,6 @@ |
] | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^26.0.15", | ||
"@types/node": "^12.0.0", | ||
"@types/react": "^17.0.0", | ||
"@types/react-dom": "^17.0.0", | ||
... | ... | @@ -37,8 +36,6 @@ |
"eslint": "^8.21.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-config-react-app": "^6.0.0", | ||
"eslint-plugin-import": "^2.23.4", | ||
"eslint-plugin-jest": "^24.4.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"eslint-plugin-react": "7.30.1", | ||
"eslint-plugin-react-hooks": "^4.2.0", | ||
... | ... | @@ -48,9 +45,6 @@ |
"dependencies": { | ||
"@material-ui/core": "^4.12.3", | ||
"@material-ui/lab": "^4.0.0-alpha.60", | ||
"@testing-library/jest-dom": "^5.11.4", | ||
"@testing-library/react": "^11.1.0", | ||
"@testing-library/user-event": "^12.1.10", | ||
"@types/draft-js": "^0.11.4", | ||
"@types/draftjs-to-html": "^0.8.1", | ||
"@types/html-to-draftjs": "^1.4.0", | ||
... | ... |
src/setupTests.ts
deleted
100644 → 0