-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.66 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.66 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
51
52
53
54
55
{
"name": "astro-clauzier-dev",
"type": "module",
"version": "0.0.1",
"description": "Personal website of Antonin CLAUZIER",
"author": "Antonin CLAUZIER",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"build": "astro build && node scripts/build-sw.js",
"build:site": "astro build",
"build:sw": "node scripts/build-sw.js",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint src --ext .ts,.astro",
"lint:fix": "eslint src --ext .ts,.astro --fix",
"format": "prettier --write \"src/**/*.{ts,astro,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,astro,css,md}\"",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"typecheck": "astro check"
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/mdx": "^4.3.13",
"@astrojs/rss": "^4.0.15",
"@fontsource/monaspace-argon": "^5.2.5",
"@fontsource/monaspace-neon": "^5.2.5",
"@fontsource/monaspace-radon": "^5.2.5",
"@iconify-json/la": "^1.2.1",
"@iconify-json/ph": "^1.2.2",
"@iconify/json": "^2.2.446",
"@tailwindcss/vite": "^4.2.1",
"astro": "^5.18.0",
"astro-icon": "^1.1.5",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.3",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3"
},
"devDependencies": {
"@vitest/ui": "^4.0.18",
"esbuild": "^0.27.3",
"happy-dom": "^20.8.3",
"jsdom": "^28.1.0",
"rollup-plugin-visualizer": "^7.0.1",
"terser": "^5.46.0",
"vitest": "^4.0.18",
"workbox-build": "^7.4.0",
"workbox-window": "^7.4.0"
}
}