martials.no/package.json

58 lines
1.4 KiB
JSON
Raw Normal View History

2024-09-08 13:14:02 +02:00
{
"name": "martials-no-v2",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
2024-09-25 22:20:47 +02:00
"build": "paraglide-js compile --project ./project.inlang --outdir ./src/paraglide && astro check && astro build",
2024-09-08 13:14:02 +02:00
"preview": "astro preview",
2024-09-25 22:20:47 +02:00
"astro": "astro",
"postinstall": "paraglide-js compile --project ./project.inlang --outdir ./src/paraglide",
"format": "prettier --write \"./src/**/*.{js,mjs,ts,astro,svelte,css,md,json}\""
2024-09-08 13:14:02 +02:00
},
"dependencies": {
"@astrojs/check": "^0.9.3",
"@astrojs/mdx": "^3.1.7",
2024-09-25 22:20:47 +02:00
"@astrojs/sitemap": "^3.1.6",
"@astrojs/svelte": "^5.7.1",
"@astrojs/tailwind": "^5.1.1",
2024-09-25 22:20:47 +02:00
"@tailwindcss/typography": "^0.5.15",
"astro": "^4.15.9",
"sharp": "^0.33.5",
2024-09-25 22:20:47 +02:00
"svelte": "^4.2.19",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2"
2024-09-25 22:20:47 +02:00
},
"devDependencies": {
"@inlang/paraglide-js": "1.11.2",
"daisyui": "^4.12.10",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.2.7",
"vite": "^5.4.8"
2024-09-25 22:20:47 +02:00
},
"prettier": {
"semi": false,
"singleQuote": false,
"plugins": [
"prettier-plugin-astro",
"prettier-plugin-svelte"
],
"overrides": [
{
"files": "**/*.astro",
"options": {
"parser": "astro"
}
},
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
2024-09-08 13:14:02 +02:00
}
2024-09-25 22:20:47 +02:00
}