-
Notifications
You must be signed in to change notification settings - Fork 242
/
Copy pathpackage.json
100 lines (100 loc) · 3.24 KB
/
package.json
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
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "component-party.dev",
"private": true,
"version": "2.0.0",
"type": "module",
"packageManager": "[email protected]",
"repository": "github:matschik/component-party.dev",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --cache --ignore-path .gitignore --plugin-search-dir=. --write .",
"format:check": "prettier --ignore-path .gitignore --plugin-search-dir=. . --check",
"build:content": "node scripts/generateContent.js",
"build:progress": "node scripts/generateReadMeProgress.js",
"prepare": "husky",
"cy:open-e2e": "cypress open --e2e --browser chrome",
"cy:open-unit": "cypress open --component --browser chrome",
"cy:run-e2e": "cypress run --e2e",
"cy:e2e": "start-server-and-test dev http-get://localhost:5173 cy:open-e2e"
},
"dependencies": {
"@iconify-json/heroicons": "^1.2.2",
"classnames": "^2.5.1",
"radix3": "^1.1.2"
},
"devDependencies": {
"@angular-eslint/eslint-plugin": "^19.3.0",
"@angular-eslint/eslint-plugin-template": "^19.3.0",
"@angular-eslint/template-parser": "^19.3.0",
"@angular/core": "^19.2.7",
"@aurelia/router": "2.0.0-beta.23",
"@babel/core": "^7.26.10",
"@babel/eslint-parser": "^7.27.0",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@builder.io/qwik": "^1.13.0",
"@lit/context": "^1.1.5",
"@matschik/lz-string": "^0.0.2",
"@shikijs/markdown-it": "^3.3.0",
"@sveltejs/vite-plugin-svelte": "5.0.3",
"@sveltejs/vite-plugin-svelte-inspector": "4.0.1",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"@unocss/preset-icons": "66.1.0-beta.12",
"@unocss/preset-typography": "66.1.0-beta.12",
"@unocss/preset-wind": "66.1.0-beta.12",
"@unocss/reset": "66.1.0-beta.12",
"aurelia": "2.0.0-beta.23",
"aurelia-framework": "^1.4.1",
"autoprefixer": "^10.4.21",
"chokidar": "^4.0.3",
"codesandbox": "^2.2.3",
"cypress": "^14.3.2",
"ember-eslint-parser": "^0.5.9",
"eslint": "^9.25.1",
"eslint-plugin-ember": "^12.5.0",
"eslint-plugin-lit": "^2.1.1",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-qwik": "^1.13.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-solid": "^0.14.5",
"eslint-plugin-svelte": "^3.5.1",
"eslint-plugin-vue": "^10.0.0",
"esm": "^3.2.25",
"eta": "^3.5.0",
"folder-hash": "^4.1.1",
"html-minifier-terser": "^7.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"lodash.kebabcase": "^4.1.1",
"markdown-it": "^14.1.0",
"micache": "^2.4.1",
"pkg-dir": "^8.0.0",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"shiki": "^3.3.0",
"solid-js": "^1.9.5",
"start-server-and-test": "^2.0.11",
"svelte": "5.28.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"unocss": "66.1.0-beta.12",
"vite": "^6.3.2",
"vite-plugin-html": "^3.2.2",
"vue": "^3.5.13"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,svelte,vue,html,md,css,hbs}": "prettier --cache --write"
},
"pnpm": {
"onlyBuiltDependencies": [
"cypress",
"esbuild"
]
}
}