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",
|
2024-10-09 20:33:18 +02:00
|
|
|
"format": "prettier --write \"./src/**/*.{js,mjs,ts,astro,svelte,css,md,json}\"",
|
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-02-15 13:29:01 +01:00
|
|
|
"@astrojs/mdx": "^4.0.8",
|
2025-02-25 19:04:17 +01:00
|
|
|
"@astrojs/node": "9.1.1",
|
2024-10-20 12:05:32 +02:00
|
|
|
"@astrojs/sitemap": "^3.2.1",
|
2025-02-15 13:29:01 +01:00
|
|
|
"@astrojs/svelte": "^7.0.4",
|
|
|
|
"@iconify-json/pajamas": "^1.2.5",
|
2025-01-19 20:02:40 +01:00
|
|
|
"@inlang/paraglide-astro": "^0.3.5",
|
|
|
|
"@inlang/paraglide-js": "1.11.8",
|
|
|
|
"@tailwindcss/typography": "^0.5.16",
|
2025-02-25 19:04:17 +01:00
|
|
|
"@tailwindcss/vite": "^4.0.9",
|
2025-03-01 10:04:48 +01:00
|
|
|
"astro": "^5.4.1 ",
|
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",
|
2024-09-27 22:13:39 +02:00
|
|
|
"sharp": "^0.33.5",
|
2025-02-25 19:04:17 +01:00
|
|
|
"svelte": "^5.20.4",
|
|
|
|
"tailwindcss": "^4.0.9",
|
2025-01-19 20:02:40 +01:00
|
|
|
"typescript": "^5.7.3"
|
2024-09-25 22:20:47 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2025-03-01 10:04:48 +01:00
|
|
|
"daisyui": "^5.0.0",
|
2025-02-25 19:04:17 +01:00
|
|
|
"prettier": "^3.5.2",
|
2024-09-25 22:20:47 +02:00
|
|
|
"prettier-plugin-astro": "^0.14.1",
|
2025-01-19 20:02:40 +01:00
|
|
|
"prettier-plugin-svelte": "^3.3.3",
|
2025-02-25 19:04:17 +01:00
|
|
|
"vite": "^6.2.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
|
|
|
}
|