mirror of
https://github.com/gotson/komga.git
synced 2026-01-09 09:24:31 +01:00
103 lines
3.5 KiB
JSON
103 lines
3.5 KiB
JSON
{
|
|
"name": "next-ui",
|
|
"private": true,
|
|
"type": "module",
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "run-s i18n:compile \"build-only {@}\" --",
|
|
"preview": "vite preview",
|
|
"build-only": "vite build --mode prod",
|
|
"test": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"test:unit": "vitest run --project unit",
|
|
"test:unit:coverage": "vitest run --project unit --coverage",
|
|
"test:unit:watch": "vitest watch --project unit",
|
|
"test:storybook": "vitest run --project storybook",
|
|
"type-check": "vue-tsc --build --force",
|
|
"lint": "eslint .",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"prettier": "prettier --check \"**/*.{js,ts,vue,scss,html,md,json}\"",
|
|
"prettier:fix": "npm run prettier -- --write",
|
|
"openapi-generate": "npx tsx ./openapi-generator.mts",
|
|
"i18n:extract": "formatjs extract \"src/**/*.{ts,tsx,vue}\" --ignore=\"**/*.d.ts\" --ignore=\"**/*.stories.*\" --out-file i18n/en.json",
|
|
"i18n:compile": "formatjs compile-folder i18n src/i18n",
|
|
"i18n:verify": "formatjs verify --missing-keys --source-locale=en \"i18n/*.json\"",
|
|
"storybook:dev": "storybook dev -p 6006",
|
|
"storybook:build": "storybook build",
|
|
"chromatic": "chromatic"
|
|
},
|
|
"dependencies": {
|
|
"@formatjs/intl-localematcher": "^0.6.2",
|
|
"@pinia/colada": "^0.17.9",
|
|
"@pinia/colada-plugin-auto-refetch": "^0.2.4",
|
|
"@pinia/colada-plugin-delay": "^0.1.1",
|
|
"@vueuse/core": "^14.1.0",
|
|
"core-js": "^3.47.0",
|
|
"filesize": "^11.0.13",
|
|
"marked": "^17.0.1",
|
|
"openapi-fetch": "^0.15.0",
|
|
"pinia": "^3.0.4",
|
|
"pinia-plugin-persistedstate": "^4.7.1",
|
|
"vue": "^3.5.25",
|
|
"vue-intl": "^6.5.27",
|
|
"vuetify": "^3.11.2"
|
|
},
|
|
"devDependencies": {
|
|
"@chromatic-com/storybook": "^4.1.3",
|
|
"@eslint/js": "^9.39.1",
|
|
"@formatjs/cli": "^6.7.4",
|
|
"@iconify-json/mdi": "^1.2.3",
|
|
"@pinia/colada-devtools": "^0.1.9",
|
|
"@storybook/addon-a11y": "^10.1.3",
|
|
"@storybook/addon-docs": "^10.1.3",
|
|
"@storybook/addon-themes": "^10.1.3",
|
|
"@storybook/addon-vitest": "^10.1.3",
|
|
"@storybook/vue3-vite": "^10.1.3",
|
|
"@testing-library/vue": "^8.1.0",
|
|
"@tsconfig/node22": "^22.0.5",
|
|
"@types/node": "^24.10.1",
|
|
"@unocss/preset-icons": "^66.5.9",
|
|
"@vitejs/plugin-vue": "^6.0.2",
|
|
"@vitest/browser-playwright": "^4.0.14",
|
|
"@vitest/coverage-v8": "^4.0.14",
|
|
"@vue/eslint-config-prettier": "^10.2.0",
|
|
"@vue/eslint-config-typescript": "^14.6.0",
|
|
"@vue/tsconfig": "^0.8.1",
|
|
"chromatic": "^13.3.4",
|
|
"eslint": "^9.39.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-formatjs": "^5.4.2",
|
|
"eslint-plugin-storybook": "^10.1.3",
|
|
"eslint-plugin-vue": "^10.6.2",
|
|
"happy-dom": "^20.0.11",
|
|
"msw": "^2.12.3",
|
|
"msw-storybook-addon": "^2.0.6",
|
|
"npm-run-all2": "^8.0.4",
|
|
"openapi-msw": "^2.0.0",
|
|
"openapi-typescript": "^7.10.1",
|
|
"playwright": "^1.57.0",
|
|
"prettier": "^3.7.1",
|
|
"sass": "^1.94.2",
|
|
"sass-embedded": "^1.93.3",
|
|
"storybook": "^10.1.3",
|
|
"typescript": "^5.9.3",
|
|
"unocss": "^66.5.9",
|
|
"unplugin-auto-import": "^20.3.0",
|
|
"unplugin-fonts": "^1.4.0",
|
|
"unplugin-vue-components": "^30.0.0",
|
|
"unplugin-vue-router": "^0.17.2",
|
|
"vite": "^7.2.4",
|
|
"vite-plugin-dir2json": "^1.3.0",
|
|
"vite-plugin-vue-layouts-next": "^1.3.0",
|
|
"vite-plugin-vuetify": "^2.1.2",
|
|
"vitest": "^4.0.14",
|
|
"vue-router": "^4.6.3",
|
|
"vue-tsc": "^3.1.5"
|
|
},
|
|
"msw": {
|
|
"workerDirectory": [
|
|
"public-msw"
|
|
]
|
|
}
|
|
}
|