-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.37 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
{
"name": "website",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "node scripts/dev.mjs",
"generate:data": "node scripts/generate-vigotech-json.mjs",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"lint": "oxlint",
"format": "oxfmt",
"format:check": "oxfmt --check",
"type-check": "tsc --noEmit",
"prepare": "lefthook install"
},
"dependencies": {
"@iconify-json/lucide": "^1.2.98",
"@tailwindcss/vite": "^4.2.2",
"astro": "^6.1.4",
"astro-icon": "^1.1.5",
"metagroup-schema-tools": "^1.1.0",
"shaders": "^2.4.78",
"tailwindcss": "^4.2.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.1",
"@vitest/ui": "^4.1.1",
"autoprefixer": "^10.4.27",
"jsdom": "^29.0.1",
"lefthook": "^2.1.4",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"postcss": "^8.5.8",
"typescript": "^5.9.3",
"vitest": "^4.1.1"
},
"engines": {
"node": ">=22.12.0"
}
}