├── .babelrc ├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── app └── main.js ├── assets ├── ding.ogg └── linedpaper.png ├── index.html ├── package.json ├── style.css └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirodoht/ketchup/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirodoht/ketchup/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirodoht/ketchup/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirodoht/ketchup/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirodoht/ketchup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirodoht/ketchup/HEAD/README.md -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirodoht/ketchup/HEAD/app/main.js -------------------------------------------------------------------------------- /assets/ding.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirodoht/ketchup/HEAD/assets/ding.ogg -------------------------------------------------------------------------------- /assets/linedpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirodoht/ketchup/HEAD/assets/linedpaper.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirodoht/ketchup/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirodoht/ketchup/HEAD/package.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirodoht/ketchup/HEAD/style.css -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirodoht/ketchup/HEAD/webpack.config.js --------------------------------------------------------------------------------