├── .babelrc ├── .codeclimate.yml ├── .editorconfig ├── .gitignore ├── .gitpod.yml ├── .prettierrc ├── .travis.yml ├── actions ├── index.js └── todo.js ├── components ├── Fork.js ├── Todo.js └── TodoItem.js ├── license ├── logo.png ├── next.config.js ├── package.json ├── pages ├── _app.js ├── _document.js └── index.js ├── readme.md ├── reducers ├── index.js └── todos.js ├── server.js ├── static ├── img │ ├── android-chrome-144x144.png │ ├── android-chrome-192x192.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── favicon.ico │ └── splashscreen-icon-384x384.png └── manifest.json └── utils ├── offline.js ├── store.js └── sw.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/.babelrc -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | Javascript: true -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/.travis.yml -------------------------------------------------------------------------------- /actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/actions/index.js -------------------------------------------------------------------------------- /actions/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/actions/todo.js -------------------------------------------------------------------------------- /components/Fork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/components/Fork.js -------------------------------------------------------------------------------- /components/Todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/components/Todo.js -------------------------------------------------------------------------------- /components/TodoItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/components/TodoItem.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/license -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/logo.png -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/pages/_document.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/pages/index.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/readme.md -------------------------------------------------------------------------------- /reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/reducers/index.js -------------------------------------------------------------------------------- /reducers/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/reducers/todos.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/server.js -------------------------------------------------------------------------------- /static/img/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/static/img/android-chrome-144x144.png -------------------------------------------------------------------------------- /static/img/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/static/img/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/img/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/static/img/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /static/img/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/static/img/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/splashscreen-icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/static/img/splashscreen-icon-384x384.png -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/static/manifest.json -------------------------------------------------------------------------------- /utils/offline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/utils/offline.js -------------------------------------------------------------------------------- /utils/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/utils/store.js -------------------------------------------------------------------------------- /utils/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpod-io/NextSimpleStarter/HEAD/utils/sw.js --------------------------------------------------------------------------------