Skip to content

Commit

Permalink
chore: reset the project to start from scratch
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarmos-san committed Oct 15, 2024
1 parent 27c2de6 commit e04689a
Show file tree
Hide file tree
Showing 12 changed files with 1,394 additions and 151 deletions.
4 changes: 4 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// @ts-check
import withNuxt from "./.nuxt/eslint.config.mjs";

export default withNuxt();
6 changes: 3 additions & 3 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { defineNuxtConfig } from "nuxt/config";

export default defineNuxtConfig({
compatibilityDate: "2024-04-03",
devtools: { enabled: true },
srcDir: "src",
vite: {
css: {
preprocessorOptions: {
Expand All @@ -12,5 +11,6 @@ export default defineNuxtConfig({
},
},
},
srcDir: "src",
modules: ["@nuxt/eslint"],
compatibilityDate: "2024-07-19",
});
23 changes: 14 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,28 @@
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"dev": "nuxt dev --host",
"generate": "nuxt generate",
"preview": "nuxt preview",
"lint": "nuxt typecheck && eslint .",
"postinstall": "nuxt prepare"
},
"dependencies": {
"nuxt": "^3.13.0",
"vue": "latest",
"vue-router": "latest"
"nuxt": "^3.13.2",
"vue": "^3.5.10",
"vue-router": "^4.4.5"
},
"devDependencies": {
"eslint": "^9.11.1",
"@nuxt/devtools": "^1.6.0",
"@nuxt/eslint": "^0.6.0",
"@vue/typescript": "^1.8.20",
"@vue/typescript-plugin": "^2.1.6",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-nuxt": "^4.0.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"sass": "^1.79.5",
"typescript": "^5.6.2"
"typescript": "^5.6.3"
}
}
Loading

0 comments on commit e04689a

Please sign in to comment.