-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.91 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "offon-website",
"type": "module",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"sync": "astro sync",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:visual": "npm run build && npx playwright test --config playwright.visual.config.ts",
"baselines:update": "npm run build && npx playwright test --config playwright.visual.config.ts --update-snapshots",
"lint": "eslint .",
"check": "astro check",
"lint:reuse": "reuse lint"
},
"engines": {
"node": ">=26.0.0"
},
"overrides": {
"postcss": "^8.5.23",
"fast-uri": "^3.1.4"
},
"dependencies": {
"@astrojs/vue": "^7.0.1",
"@iconify-json/lucide": "^1.2.128",
"@tailwindcss/vite": "^4.3.3",
"astro": "^7.2.10",
"nanostores": "^1.5.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"shiki": "^4.4.3",
"tailwindcss": "^4.3.3",
"unified": "^11.0.5",
"unplugin-icons": "^23.0.1",
"vue": "^3.5.42",
"yaml": "^2.9.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"@axe-core/playwright": "^4.13.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.0",
"@vitejs/plugin-vue": "^6.0.8",
"@vitest/coverage-v8": "^4.1.11",
"@vue/test-utils": "^2.5.0",
"eslint": "^10.9.1",
"eslint-plugin-astro": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-vue": "^10.10.0",
"eslint-plugin-vuejs-accessibility": "^2.6.0",
"globals": "^17.11.0",
"happy-dom": "^20.11.12",
"jszip": "^3.10.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.68.0",
"vitest": "^4.1.11",
"vue-eslint-parser": "^10.4.1"
}
}