2024-09-08 13:14:02 +02:00
|
|
|
{
|
|
|
|
"name": "martials-no-v2",
|
|
|
|
"type": "module",
|
2025-02-16 13:50:27 +01:00
|
|
|
"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",
|
2025-02-15 14:34:47 +01:00
|
|
|
"type-check": "astro check",
|
2024-09-25 22:20:47 +02:00
|
|
|
"postinstall": "paraglide-js compile --project ./project.inlang --outdir ./src/paraglide",
|
2025-07-01 19:38:45 +02:00
|
|
|
"format": "biome format --write .",
|
|
|
|
"lint": "biome lint --write .",
|
|
|
|
"lint:fix": "biome check --write .",
|
2024-10-12 18:29:44 +02:00
|
|
|
"watch-messages": "paraglide-js compile --watch --project ./project.inlang --outdir ./src/paraglide"
|
2024-09-08 13:14:02 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-10-12 19:07:55 +02:00
|
|
|
"@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",
|
2025-01-19 20:02:40 +01:00
|
|
|
"@tailwindcss/typography": "^0.5.16",
|
2025-07-01 19:09:53 +02:00
|
|
|
"@tailwindcss/vite": "^4.1.11",
|
|
|
|
"astro": "^5.10.2",
|
2025-01-19 20:02:40 +01:00
|
|
|
"astro-icon": "^1.1.5",
|
2025-02-25 19:49:21 +01:00
|
|
|
"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
|
|
|
}
|