forked from matschik/component-party.dev
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.77 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.77 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "component-party.dev",
"private": true,
"version": "2.0.0",
"type": "module",
"packageManager": "pnpm@10.14.0",
"repository": "github:matschik/component-party.dev",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"_format": "prettier --cache --cache-location .cache/prettier",
"format": "pnpm _format --write .",
"lint": "oxlint && eslint",
"check": "pnpm format && svelte-check --tsconfig ./tsconfig.json && pnpm lint",
"check:ci": "svelte-check --tsconfig ./tsconfig.json && pnpm lint",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"build:content": "node scripts/generateContent.ts --no-cache",
"build:progress": "node scripts/generateReadMeProgress.ts",
"build:sitemap": "node scripts/generateSitemap.ts",
"prepare": "lefthook install",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"test:e2e:install": "playwright install chromium",
"test": "pnpm run test:e2e",
"check:package-manager": "node scripts/check-package-manager.js"
},
"dependencies": {
"@iconify-json/heroicons": "^1.2.3",
"just-throttle": "^4.2.0",
"lz-string": "^1.5.0",
"runed": "^0.37.1",
"sv-router": "^0.13.0"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.2",
"@iconify/json": "^2.2.426",
"@iconify/tailwind4": "^1.2.0",
"@playwright/test": "^1.57.0",
"@shikijs/markdown-it": "^3.21.0",
"@sveltejs/vite-plugin-svelte": "6.2.3",
"@sveltejs/vite-plugin-svelte-inspector": "5.0.2",
"@tailwindcss/vite": "^4.1.18",
"@types/folder-hash": "^4.0.4",
"@types/html-minifier-terser": "^7.0.2",
"@types/markdown-it": "^14.1.2",
"autoprefixer": "^10.4.23",
"chokidar": "^5.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-oxlint": "^1.38.0",
"eslint-plugin-svelte": "^3.14.0",
"eta": "^4.5.0",
"folder-hash": "^4.1.1",
"globals": "^17.0.0",
"html-minifier-terser": "^7.2.0",
"just-kebab-case": "^4.2.0",
"lefthook": "^2.0.13",
"markdown-it": "^14.1.0",
"micache": "^2.4.1",
"oxlint": "^1.38.0",
"package-directory": "^8.1.0",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.1",
"shiki": "^3.21.0",
"svelte": "5.46.1",
"svelte-check": "^4.3.5",
"tailwindcss": "^4.1.18",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vite": "^7.3.1",
"vite-plugin-html": "^3.2.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"engines": {
"node": ">=22.18.0"
}
}