├── .dockerignore ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── README.md ├── index.js ├── jsconfig.json ├── netlify.toml ├── package.json ├── playwright.config.js ├── postcss.config.js ├── public ├── favicon.ico ├── fonts │ ├── fonts.css │ ├── ubuntu-bold.woff2 │ ├── ubuntu-medium.woff2 │ ├── ubuntu-mono-bold.woff2 │ ├── ubuntu-mono-regular.woff2 │ └── ubuntu-regular.woff2 ├── manifest.json ├── pwa │ └── images │ │ ├── icon-192.png │ │ └── icon-512.png ├── robots.txt ├── service-worker.js └── sitemap.xml ├── src ├── data │ └── main.json ├── layouts │ └── base.twig ├── pages │ ├── 404.twig │ ├── about.twig │ ├── about.twig.json │ ├── index.twig │ ├── index.twig.json │ ├── privacy-policy.twig │ └── privacy-policy.twig.json ├── scripts │ ├── editor.js │ └── main.js └── styles │ ├── editor.css │ └── style.css ├── tailwind.config.js ├── templates ├── logo_template.png └── logo_template.xcf ├── tests ├── editor.spec.js └── theme.spec.js ├── todo.txt └── vite.config.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/index.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/jsconfig.json -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/playwright.config.js -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/public/fonts/fonts.css -------------------------------------------------------------------------------- /public/fonts/ubuntu-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/public/fonts/ubuntu-bold.woff2 -------------------------------------------------------------------------------- /public/fonts/ubuntu-medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/public/fonts/ubuntu-medium.woff2 -------------------------------------------------------------------------------- /public/fonts/ubuntu-mono-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/public/fonts/ubuntu-mono-bold.woff2 -------------------------------------------------------------------------------- /public/fonts/ubuntu-mono-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/public/fonts/ubuntu-mono-regular.woff2 -------------------------------------------------------------------------------- /public/fonts/ubuntu-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/public/fonts/ubuntu-regular.woff2 -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/pwa/images/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/public/pwa/images/icon-192.png -------------------------------------------------------------------------------- /public/pwa/images/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/public/pwa/images/icon-512.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/public/service-worker.js -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /src/data/main.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "json formatter live" 3 | } 4 | -------------------------------------------------------------------------------- /src/layouts/base.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/src/layouts/base.twig -------------------------------------------------------------------------------- /src/pages/404.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/src/pages/404.twig -------------------------------------------------------------------------------- /src/pages/about.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/src/pages/about.twig -------------------------------------------------------------------------------- /src/pages/about.twig.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "about - json formatter live" 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/src/pages/index.twig -------------------------------------------------------------------------------- /src/pages/index.twig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/src/pages/index.twig.json -------------------------------------------------------------------------------- /src/pages/privacy-policy.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/src/pages/privacy-policy.twig -------------------------------------------------------------------------------- /src/pages/privacy-policy.twig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/src/pages/privacy-policy.twig.json -------------------------------------------------------------------------------- /src/scripts/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/src/scripts/editor.js -------------------------------------------------------------------------------- /src/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/src/scripts/main.js -------------------------------------------------------------------------------- /src/styles/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/src/styles/editor.css -------------------------------------------------------------------------------- /src/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/src/styles/style.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /templates/logo_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/templates/logo_template.png -------------------------------------------------------------------------------- /templates/logo_template.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/templates/logo_template.xcf -------------------------------------------------------------------------------- /tests/editor.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/tests/editor.spec.js -------------------------------------------------------------------------------- /tests/theme.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/tests/theme.spec.js -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/todo.txt -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrunastase/json-formatter-live/HEAD/vite.config.js --------------------------------------------------------------------------------