Added basic nuxt stuff

Added index, translations (not currently working), and removed further unnecessary stuff
This commit is contained in:
Louis Hollingworth 2022-05-21 21:03:12 +01:00
parent 42d960090e
commit f1c76c22a7
No known key found for this signature in database
GPG key ID: 1E66DEA3F5D623D1
339 changed files with 5112 additions and 2723 deletions

View file

@ -1,21 +1,19 @@
{
"name": "friends-best",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"moment": "^2.29.1",
"postcss": "^8.3.6",
"tailwindcss": "^2.2.9"
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview"
},
"devDependencies": {
"eslint": "7.31.0",
"eslint-config-next": "11.0.1",
"typescript": "4.3.5"
"@nuxt/postcss8": "^1.1.3",
"@nuxt/types": "^2.15.8",
"nuxt": "3.0.0-rc.1"
},
"dependencies": {
"@nuxtjs/i18n": "^7.2.2",
"autoprefixer": "^10.4.7",
"tailwindcss": "^3.0.24"
}
}