it-tools/packages/app/package.json

52 lines
1.4 KiB
JSON
Raw Normal View History

2024-10-24 14:40:54 +02:00
{
"name": "@it-tools/app",
"type": "module",
"private": true,
2024-10-24 21:05:54 +02:00
"packageManager": "pnpm@9.12.2",
2024-10-24 14:40:54 +02:00
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"build:cloudflare-pages": "nuxt build --preset cloudflare_pages",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "pnpm run test:unit",
"test:unit": "vitest run",
"test:unit:watch": "vitest watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
2024-10-26 10:54:32 +02:00
"@corentinth/chisels": "^1.1.0",
2024-10-24 21:05:54 +02:00
"@nuxt/fonts": "^0.10.2",
"@nuxt/icon": "^1.5.6",
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/i18n": "^8.5.5",
2024-10-26 10:54:32 +02:00
"@nuxtjs/seo": "2.0.0-rc.23",
"@pinia/nuxt": "^0.5.5",
2024-10-24 21:05:54 +02:00
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
2024-10-26 10:54:32 +02:00
"lodash-es": "^4.17.21",
2024-10-24 21:05:54 +02:00
"lucide-vue-next": "^0.453.0",
2024-11-29 23:56:41 +01:00
"nuxt": "^3.14.159",
2024-10-24 21:05:54 +02:00
"radix-vue": "^1.9.7",
"shadcn-nuxt": "^0.10.4",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
2024-10-24 14:40:54 +02:00
"vue": "latest",
"vue-router": "latest"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
2024-10-24 21:05:54 +02:00
"@nuxtjs/tailwindcss": "^6.12.2",
2024-11-29 23:56:41 +01:00
"@tailwindcss/typography": "^0.5.15",
2024-10-26 10:54:32 +02:00
"@types/lodash-es": "^4.17.12",
2024-10-24 21:05:54 +02:00
"@vueuse/core": "^11.1.0",
"@vueuse/nuxt": "^11.1.0",
2024-10-24 14:40:54 +02:00
"eslint": "^9.13.0",
2024-10-24 21:05:54 +02:00
"typescript": "^5.6.3",
2024-10-24 14:40:54 +02:00
"vitest": "^2.1.3"
}
}