Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

User Managment Refactoring #47

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions frontend/lost/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"plugins": [
"react-hooks"
],
"rules": {
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
}
}
115 changes: 57 additions & 58 deletions frontend/lost/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions frontend/lost/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,19 @@
"lodash": "^4.17.15",
"node-sass": "^4.9.3",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react": "^16.11.0",
"react-app-polyfill": "^0.1.3",
"react-autocomplete": "^1.8.1",
"react-chartjs-2": "^2.7.2",
"react-contexify": "^4.0.0",
"react-dom": "^16.5.2",
"react-dom": "^16.11.0",
"react-draggable": "^3.3.0",
"react-graph-vis": "^1.0.2",
"react-lazylog": "^3.2.0",
"react-loadable": "^5.5.0",
"react-modal": "^3.8.1",
"react-notifications": "^1.4.3",
"react-redux": "^6.0.1",
"react-redux": "^7.1.0-alpha.4",
"react-router-config": "^4.4.0-beta.1",
"react-router-dom": "^4.3.1",
"react-table": "^6.9.0",
Expand All @@ -56,13 +56,15 @@
"redux": "^4.0.1",
"redux-form": "^8.2.0",
"redux-thunk": "^2.3.0",
"sweetalert2": "^8.2.6",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.87.3",
"simple-line-icons": "^2.4.1"
},
"devDependencies": {
"circular-dependency-plugin": "^5.0.2",
"copy-webpack-plugin": "^4.6.0",
"eslint-plugin-react-hooks": "^2.2.0",
"react-app-rewire-eslint": "^0.2.3",
"react-app-rewired": "^1.6.2",
"react-scripts": "^2.0.4"
Expand Down
1 change: 1 addition & 0 deletions frontend/lost/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React, { Component } from 'react'
import { connect } from 'react-redux'
import { HashRouter, Route, Switch } from 'react-router-dom'
import './App.scss'
import 'semantic-ui-css/semantic.min.css'

import DefaultLayout from './components/DefaultLayout/DefaultLayout'
import TimeOut from './views/Pages/TimeOut/TimeOut'
Expand Down
Loading