[READ-ONLY] Mirror of https://github.com/danielroe/spooon. This is a tiny recipe app built in Nuxt for a live-coding session at Vue.js Nation 2024. nuxt-spooon.vercel.app
0

Configure Feed

Select the types of activity you want to include in your feed.

spooon / package.json
431 B 22 lines
1{ 2 "name": "nuxt-app", 3 "private": true, 4 "type": "module", 5 "scripts": { 6 "build": "nuxt build", 7 "dev": "nuxt dev", 8 "generate": "nuxt generate", 9 "preview": "nuxt preview", 10 "postinstall": "nuxt prepare" 11 }, 12 "devDependencies": { 13 "@nuxt/image": "2.0.0", 14 "@nuxt/ui": "2.22.3", 15 "nuxt": "4.4.5", 16 "vue": "3.5.34", 17 "vue-router": "5.0.6" 18 }, 19 "dependencies": { 20 "valibot": "^1.0.0" 21 } 22}