-
Notifications
You must be signed in to change notification settings - Fork 233
/
package.json
98 lines (98 loc) · 3.3 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
{
"name": "component-party.dev",
"private": true,
"version": "2.0.0",
"type": "module",
"packageManager": "pnpm@9.12.0",
"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.1",
"@lit/task": "^1.0.1",
"classnames": "^2.5.1",
"radix3": "^1.1.2"
},
"devDependencies": {
"@angular-eslint/eslint-plugin": "^18.3.1",
"@angular-eslint/eslint-plugin-template": "^18.3.1",
"@angular-eslint/template-parser": "^18.3.1",
"@angular/core": "^18.2.8",
"@aurelia/router": "2.0.0-beta.22",
"@babel/core": "^7.25.8",
"@babel/eslint-parser": "^7.25.8",
"@babel/plugin-proposal-decorators": "^7.25.7",
"@builder.io/qwik": "^1.9.1",
"@lit/context": "^1.1.3",
"@matschik/lz-string": "^0.0.2",
"@shikijs/markdown-it": "^1.22.0",
"@sveltejs/vite-plugin-svelte": "4.0.0-next.7",
"@sveltejs/vite-plugin-svelte-inspector": "3.0.0-next.3",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@unocss/preset-icons": "^0.63.4",
"@unocss/preset-typography": "^0.63.4",
"@unocss/preset-wind": "^0.63.4",
"@unocss/reset": "^0.63.4",
"aurelia": "2.0.0-beta.22",
"aurelia-framework": "^1.4.1",
"autoprefixer": "^10.4.20",
"chokidar": "^4.0.1",
"codesandbox": "^2.2.3",
"cypress": "^13.15.0",
"ember-eslint-parser": "^0.5.2",
"eslint": "^8.57.1",
"eslint-plugin-ember": "^12.2.1",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-qwik": "^1.9.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-solid": "^0.14.3",
"eslint-plugin-svelte": "^2.44.1",
"eslint-plugin-vue": "^9.28.0",
"esm": "^3.2.25",
"eta": "^3.5.0",
"folder-hash": "^4.0.4",
"html-minifier-terser": "^7.2.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"lit": "^3.2.1",
"lodash.kebabcase": "^4.1.1",
"markdown-it": "^14.1.0",
"micache": "^2.4.1",
"pkg-dir": "^8.0.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"shiki": "^1.22.0",
"solid-js": "^1.9.2",
"start-server-and-test": "^2.0.8",
"svelte": "5.0.0-next.262",
"tslib": "^2.7.0",
"typescript": "^5.6.3",
"unocss": "^0.63.4",
"vite": "^5.4.8",
"vite-plugin-html": "^3.2.2",
"vue": "^3.5.11"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue,gjs}": "eslint --cache --fix",
"**/svelte4/*.svelte": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,svelte,vue,html,md,css,hbs}": "prettier --cache --write"
}
}