-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.6 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "holonews-fr-reader",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev --host",
"start": "astro dev",
"check": "astro check",
"clean": "rm -rf node_modules dist .eslintcache",
"format": "prettier '**/*.{cjs,mjs,ts,md,mdx,json,astro}' --ignore-path ./.gitignore --ignore-unknown --write",
"format:check": "prettier '**/*.{cjs,mjs,ts,md,mdx,json,astro}' --ignore-path ./.gitignore --ignore-unknown --check",
"lint": "eslint . --report-unused-disable-directives",
"lint:fix": "pnpm lint --fix",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/mdx": "^5.0.2",
"@astrojs/svelte": "^8.0.3",
"@internationalized/date": "^3.12.0",
"@lucide/svelte": "^0.577.0",
"@tailwindcss/vite": "^4.2.2",
"astro": "^6.0.8",
"bits-ui": "^2.16.3",
"clsx": "^2.1.1",
"playwright": "^1.58.2",
"sharp": "^0.34.5",
"svelte": "^5.54.0",
"tailwind-merge": "^3.5.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@9.15.0",
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/bun": "^1.3.11",
"@types/node": "^25.5.0",
"@typescript-eslint/parser": "^8.57.1",
"astro-eslint-parser": "^1.3.0",
"eslint": "^10.1.0",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2"
}
}