├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .yarnrc ├── LICENSE ├── Makefile ├── README.md ├── package.json ├── src ├── authProvider.js ├── dataProvider.js └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wellers0n/react-admin-postgrest-client/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wellers0n/react-admin-postgrest-client/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wellers0n/react-admin-postgrest-client/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wellers0n/react-admin-postgrest-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | workspaces-experimental true -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wellers0n/react-admin-postgrest-client/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wellers0n/react-admin-postgrest-client/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wellers0n/react-admin-postgrest-client/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wellers0n/react-admin-postgrest-client/HEAD/package.json -------------------------------------------------------------------------------- /src/authProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wellers0n/react-admin-postgrest-client/HEAD/src/authProvider.js -------------------------------------------------------------------------------- /src/dataProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wellers0n/react-admin-postgrest-client/HEAD/src/dataProvider.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wellers0n/react-admin-postgrest-client/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wellers0n/react-admin-postgrest-client/HEAD/yarn.lock --------------------------------------------------------------------------------