-
- Downloads
fixed jest and prettier errors, pipeline uses correct caching
Showing
- .gitlab-ci.yml 4 additions, 2 deletions.gitlab-ci.yml
- package-lock.json 18270 additions, 0 deletionspackage-lock.json
- package.json 58 additions, 57 deletionspackage.json
- src/App.test.tsx 1 addition, 1 deletionsrc/App.test.tsx
- src/components/App.tsx 6 additions, 10 deletionssrc/components/App.tsx
- src/components/admin/index.tsx 3 additions, 3 deletionssrc/components/admin/index.tsx
- src/components/user/homeComponent.tsx 7 additions, 3 deletionssrc/components/user/homeComponent.tsx
- src/index.tsx 3 additions, 3 deletionssrc/index.tsx
package-lock.json
0 → 100644
This diff is collapsed.
{ | ||
"name": "unisport_frontend", | ||
"version": "0.1.0", | ||
"private": true, | ||
"dependencies": { | ||
"@reduxjs/toolkit": "^1.5.1", | ||
"@testing-library/jest-dom": "^4.2.4", | ||
"@testing-library/react": "^9.3.2", | ||
"@testing-library/user-event": "^7.1.2", | ||
"@types/jest": "^24.0.0", | ||
"@types/node": "^12.0.0", | ||
"@types/react": "^16.9.0", | ||
"@types/react-dom": "^16.9.0", | ||
"@types/react-redux": "^7.1.7", | ||
"react": "^17.0.2", | ||
"react-dom": "^17.0.2", | ||
"react-redux": "^7.2.0", | ||
"react-router-dom": "^5.2.0", | ||
"react-scripts": "4.0.3", | ||
"typescript": "~4.1.5" | ||
}, | ||
"scripts": { | ||
"start": "react-scripts start", | ||
"build": "react-scripts build", | ||
"test": "react-scripts test", | ||
"eject": "react-scripts eject", | ||
"lint": "eslint . -c .eslint-rc.js", | ||
"lint-fix": "eslint . -c .eslint-rc.js --fix", | ||
"prettier-check": "prettier --check ." | ||
}, | ||
"eslintConfig": { | ||
"extends": "react-app" | ||
}, | ||
"browserslist": { | ||
"production": [ | ||
">0.2%", | ||
"not dead", | ||
"not op_mini all" | ||
], | ||
"development": [ | ||
"last 1 chrome version", | ||
"last 1 firefox version", | ||
"last 1 safari version" | ||
] | ||
}, | ||
"devDependencies": { | ||
"@babel/preset-env": "^7.13.15", | ||
"@types/react-router-dom": "^5.1.7", | ||
"@typescript-eslint/eslint-plugin": "^4.22.0", | ||
"@typescript-eslint/parser": "^4.22.0", | ||
"eslint": "^7.27.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-config-react": "^1.1.7", | ||
"eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^4.3.1", | ||
"prettier": "2.2.1" | ||
} | ||
"name": "unisport_frontend", | ||
"version": "0.1.0", | ||
"private": true, | ||
"dependencies": { | ||
"@reduxjs/toolkit": "^1.5.1", | ||
"@testing-library/jest-dom": "^4.2.4", | ||
"@testing-library/react": "^9.3.2", | ||
"@testing-library/user-event": "^7.1.2", | ||
"@types/jest": "^24.0.0", | ||
"@types/node": "^12.0.0", | ||
"@types/react": "^16.9.0", | ||
"@types/react-dom": "^16.9.0", | ||
"@types/react-redux": "^7.1.7", | ||
"react": "^17.0.2", | ||
"react-dom": "^17.0.2", | ||
"react-redux": "^7.2.0", | ||
"react-router-dom": "^5.2.0", | ||
"react-scripts": "4.0.3", | ||
"typescript": "~4.1.5" | ||
}, | ||
"scripts": { | ||
"start": "react-scripts start", | ||
"build": "react-scripts build", | ||
"test": "react-scripts test", | ||
"eject": "react-scripts eject", | ||
"lint": "eslint . -c .eslint-rc.js", | ||
"lint-fix": "eslint . -c .eslint-rc.js --fix", | ||
"prettier-check": "prettier --check .", | ||
"prettier-write": "prettier --write ." | ||
}, | ||
"eslintConfig": { | ||
"extends": "react-app" | ||
}, | ||
"browserslist": { | ||
"production": [ | ||
">0.2%", | ||
"not dead", | ||
"not op_mini all" | ||
], | ||
"development": [ | ||
"last 1 chrome version", | ||
"last 1 firefox version", | ||
"last 1 safari version" | ||
] | ||
}, | ||
"devDependencies": { | ||
"@babel/preset-env": "^7.13.15", | ||
"@types/react-router-dom": "^5.1.7", | ||
"@typescript-eslint/eslint-plugin": "^4.22.0", | ||
"@typescript-eslint/parser": "^4.22.0", | ||
"eslint": "^7.27.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-config-react": "^1.1.7", | ||
"eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^4.3.1", | ||
"prettier": "2.2.1" | ||
} | ||
} |
Please register or sign in to comment