forked from matschik/component-party.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.56 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
101
102
103
104
105
106
107
108
{
"name": "component-party",
"private": true,
"version": "2.0.0",
"type": "module",
"packageManager": "[email protected]",
"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 install",
"test": "vitest -c vite.config.test.js run",
"watch": "vitest -c vite.config.test.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@lit/context": "^1.1.0",
"@veljs/svelte": "^0.1.11",
"classnames": "^2.5.1",
"eslint-plugin-svelte": "^2.35.1",
"heroiconsvelte": "^1.0.2"
},
"devDependencies": {
"@angular-eslint/eslint-plugin": "^17.2.1",
"@angular-eslint/eslint-plugin-template": "^17.2.1",
"@angular-eslint/template-parser": "^17.2.1",
"@angular/core": "^17.1.2",
"@aurelia/router": "2.0.0-beta.10",
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-proposal-decorators": "^7.23.9",
"@chromatic-com/storybook": "^1.2.2",
"@matschik/lz-string": "^0.0.2",
"@stefanprobst/remark-shiki": "^2.2.1",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/blocks": "^8.0.0",
"@storybook/svelte": "^8.0.0",
"@storybook/svelte-vite": "^8.0.0",
"@storybook/test": "^8.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/svelte": "git+ssh://github.com/testing-library/svelte-testing-library#v4.2.1",
"@testing-library/user-event": "^14.5.2",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"aurelia": "2.0.0-beta.10",
"aurelia-framework": "^1.4.1",
"autoprefixer": "^10.4.17",
"chokidar": "^3.5.3",
"codesandbox": "^2.2.3",
"eslint": "^8.56.0",
"eslint-plugin-ember": "^12.0.0",
"eslint-plugin-lit": "^1.11.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-qwik": "^1.4.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-solid": "^0.13.1",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vue": "^9.21.1",
"esm": "^3.2.25",
"folder-hash": "^4.0.4",
"global-jsdom": "^24.0.0",
"husky": "^9.0.10",
"lint-staged": "^15.2.1",
"lit": "^3.1.2",
"lodash.kebabcase": "^4.1.1",
"micache": "^2.4.1",
"pkg-dir": "^8.0.0",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"prettier-plugin-svelte": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"shiki": "^0.14.7",
"solid-js": "^1.8.12",
"storybook": "^8.0.0",
"svelte": "^5.0.0-next.68",
"svelte-preprocess": "^5.1.3",
"tailwindcss": "^3.4.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"unified": "^11.0.4",
"vite": "^5.0.12",
"vite-plugin-html": "^3.2.2",
"vitest": "^1.2.2",
"vue": "^3.4.15"
},
"overrides": {
"svelte-eslint-parser": "next"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue,svelte}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,svelte,vue,html,md,css,hbs}": "prettier --cache --write"
}
}