-
- Downloads
Merge branch 'configuration' into 'DEV'
Configuration See merge request kszk/devteam/bodysch/bodysch-frontend!1
No related branches found
No related tags found
Showing
- .env.example 1 addition, 0 deletions.env.example
- .eslintignore 7 additions, 0 deletions.eslintignore
- .eslintrc.js 14 additions, 0 deletions.eslintrc.js
- .gitignore 49 additions, 13 deletions.gitignore
- .prettierignore 65 additions, 0 deletions.prettierignore
- .prettierrc.json 16 additions, 0 deletions.prettierrc.json
- README.md 11 additions, 18 deletionsREADME.md
- package-lock.json 16991 additions, 15071 deletionspackage-lock.json
- package.json 61 additions, 20 deletionspackage.json
- public/index.html 1 addition, 4 deletionspublic/index.html
- src/core/App.tsx 4 additions, 2 deletionssrc/core/App.tsx
- src/index.tsx 6 additions, 6 deletionssrc/index.tsx
- src/serviceWorker.ts 20 additions, 23 deletionssrc/serviceWorker.ts
- src/setupTests.ts 0 additions, 0 deletionssrc/setupTests.ts
- tsconfig.json 2 additions, 8 deletionstsconfig.json
.env.example
0 → 100644
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.prettierignore
0 → 100644
.prettierrc.json
0 → 100644
Source diff could not be displayed: it is too large. Options to address this: view the blob.
... | @@ -2,29 +2,32 @@ | ... | @@ -2,29 +2,32 @@ |
"name": "bodysch-frontend", | "name": "bodysch-frontend", | ||
"version": "0.1.0", | "version": "0.1.0", | ||
"private": true, | "private": true, | ||
"dependencies": { | |||
"@testing-library/jest-dom": "^4.2.4", | |||
"@testing-library/react": "^9.5.0", | |||
"@testing-library/user-event": "^7.2.1", | |||
"@types/jest": "^24.9.1", | |||
"@types/node": "^12.12.29", | |||
"@types/react": "^16.9.23", | |||
"@types/react-dom": "^16.9.5", | |||
"react": "^16.13.0", | |||
"react-dom": "^16.13.0", | |||
"react-scripts": "3.4.0", | |||
"semantic-ui-css": "^2.4.1", | |||
"semantic-ui-react": "^0.88.2", | |||
"typescript": "^3.7.5" | |||
}, | |||
"scripts": { | "scripts": { | ||
"start": "react-scripts start", | |||
"build": "react-scripts build", | "build": "react-scripts build", | ||
"test": "react-scripts test", | "eject": "react-scripts eject", | ||
"eject": "react-scripts eject" | "fix": "run-s format lint:fix", | ||
"format": "prettier --write .", | |||
"format:check": "prettier --check .", | |||
"lint": "eslint --cache src", | |||
"lint:fix": "eslint src --fix", | |||
"pre-commit": "lint-staged -p false", | |||
"start": "react-scripts start", | |||
"test": "react-scripts test --watchAll=false --passWithNoTests", | |||
"test:watch": "react-scripts test", | |||
"validate": "run-s format:check lint" | |||
}, | }, | ||
"eslintConfig": { | "husky": { | ||
"extends": "react-app" | "hooks": { | ||
"pre-commit": "npm run pre-commit" | |||
} | |||
}, | |||
"lint-staged": { | |||
"*": [ | |||
"prettier --write ." | |||
], | |||
"*.{js,jsx,ts,tsx}": [ | |||
"eslint --cache --fix" | |||
] | |||
}, | }, | ||
"browserslist": { | "browserslist": { | ||
"production": [ | "production": [ | ||
... | @@ -37,5 +40,43 @@ | ... | @@ -37,5 +40,43 @@ |
"last 1 firefox version", | "last 1 firefox version", | ||
"last 1 safari version" | "last 1 safari version" | ||
] | ] | ||
}, | |||
"eslintConfig": { | |||
"extends": "./eslintrc.js" | |||
}, | |||
"dependencies": { | |||
"react": "^16.13.1", | |||
"react-dom": "^16.13.1", | |||
"react-router": "^5.2.0", | |||
"react-router-dom": "^5.2.0", | |||
"react-scripts": "3.4.0", | |||
"semantic-ui-css": "^2.4.1", | |||
"semantic-ui-react": "^0.88.2", | |||
"typescript": "^3.9.7" | |||
}, | |||
"devDependencies": { | |||
"@testing-library/jest-dom": "^4.2.4", | |||
"@testing-library/react": "^9.5.0", | |||
"@testing-library/user-event": "^7.2.1", | |||
"@types/jest": "^24.9.1", | |||
"@types/node": "^12.12.53", | |||
"@types/react": "^16.9.43", | |||
"@types/react-dom": "^16.9.8", | |||
"@typescript-eslint/eslint-plugin": "^3.7.0", | |||
"@typescript-eslint/parser": "^3.7.0", | |||
"eslint": "^7.5.0", | |||
"eslint-config-airbnb-typescript": "^9.0.0", | |||
"eslint-config-prettier": "^4.3.0", | |||
"eslint-plugin-import": "^2.22.0", | |||
"eslint-plugin-jsx-a11y": "^6.3.1", | |||
"eslint-plugin-prettier": "^3.1.4", | |||
"eslint-plugin-react": "^7.20.3", | |||
"husky": "^4.2.5", | |||
"lint-staged": "^10.2.11", | |||
"npm-run-all": "^4.1.5", | |||
"prettier": "^2.0.5", | |||
"prettier-plugin-organize-imports": "^1.1.1", | |||
"prettier-plugin-packagejson": "^2.2.5", | |||
"prettier-plugin-sh": "^0.5.0" | |||
} | } | ||
} | } |
File moved
Please register or sign in to comment