Files
martials.no/package.json

61 lines
1.7 KiB
JSON
Raw Normal View History

2024-09-08 13:14:02 +02:00
{
"name": "martials-no-v2",
"type": "module",
"version": "1.0.0",
2024-09-08 13:14:02 +02:00
"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",
"type-check": "astro check",
2024-09-25 22:20:47 +02:00
"postinstall": "paraglide-js compile --project ./project.inlang --outdir ./src/paraglide",
"format": "biome format --write .",
"lint": "biome lint --write .",
"lint:fix": "biome check --write .",
"watch-messages": "paraglide-js compile --watch --project ./project.inlang --outdir ./src/paraglide"
2024-09-08 13:14:02 +02:00
},
"dependencies": {
"@astrojs/check": "^0.9.4",
2025-07-01 19:09:53 +02:00
"@astrojs/mdx": "^4.3.0",
"@astrojs/node": "9.2.2",
"@astrojs/sitemap": "^3.4.1",
"@astrojs/svelte": "^7.1.0",
"@iconify-json/pajamas": "^1.2.11",
"@inlang/paraglide-astro": "^0.4.1",
"@inlang/paraglide-js": "2.1.0",
"@tailwindcss/typography": "^0.5.16",
2025-07-01 19:09:53 +02:00
"@tailwindcss/vite": "^4.1.11",
"astro": "^5.10.2",
"astro-icon": "^1.1.5",
"dayjs": "^1.11.13",
2025-07-01 19:09:53 +02:00
"sharp": "^0.34.2",
"svelte": "^5.34.9",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3"
2024-09-25 22:20:47 +02:00
},
"devDependencies": {
2025-07-01 19:09:53 +02:00
"daisyui": "^5.0.43",
"prettier": "^3.6.2",
2024-09-25 22:20:47 +02:00
"prettier-plugin-astro": "^0.14.1",
2025-07-01 19:09:53 +02:00
"prettier-plugin-svelte": "^3.4.0",
"vite": "^7.0.0"
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"
}
}
]
2024-09-08 13:14:02 +02:00
}
2024-09-25 22:20:47 +02:00
}