├── .env.example ├── .gitignore ├── .npmrc ├── README.md ├── app.vue ├── nuxt.config.ts ├── package.json ├── pnpm-lock.yaml ├── providers └── spoonacular.ts ├── public ├── favicon.ico └── robots.txt ├── renovate.json ├── server ├── api │ └── recipes.get.ts └── tsconfig.json └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- 1 | NUXT_SPOONACULAR_API_KEY= 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielroe/spooon/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielroe/spooon/HEAD/README.md -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielroe/spooon/HEAD/app.vue -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielroe/spooon/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielroe/spooon/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielroe/spooon/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /providers/spoonacular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielroe/spooon/HEAD/providers/spoonacular.ts -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielroe/spooon/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielroe/spooon/HEAD/renovate.json -------------------------------------------------------------------------------- /server/api/recipes.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielroe/spooon/HEAD/server/api/recipes.get.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielroe/spooon/HEAD/tsconfig.json --------------------------------------------------------------------------------