├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .versionrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images └── logo.png ├── index.js ├── package.json └── test ├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/.prettierrc -------------------------------------------------------------------------------- /.versionrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/.versionrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/README.md -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/images/logo.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/package.json -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/README.md -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/package.json -------------------------------------------------------------------------------- /test/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/public/favicon.ico -------------------------------------------------------------------------------- /test/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/public/index.html -------------------------------------------------------------------------------- /test/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/public/logo192.png -------------------------------------------------------------------------------- /test/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/public/logo512.png -------------------------------------------------------------------------------- /test/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/public/manifest.json -------------------------------------------------------------------------------- /test/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/public/robots.txt -------------------------------------------------------------------------------- /test/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/src/App.css -------------------------------------------------------------------------------- /test/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/src/App.js -------------------------------------------------------------------------------- /test/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/src/App.test.js -------------------------------------------------------------------------------- /test/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/src/index.css -------------------------------------------------------------------------------- /test/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/src/index.js -------------------------------------------------------------------------------- /test/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/src/logo.svg -------------------------------------------------------------------------------- /test/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/src/reportWebVitals.js -------------------------------------------------------------------------------- /test/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttessarolo/useDexie/HEAD/test/src/setupTests.js --------------------------------------------------------------------------------