-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.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
{
"name": "butopen-web-components-tailwind-starter-kit",
"version": "1.0.1",
"scripts": {
"start": "vite dev --host",
"dev": "vite dev --host",
"build": "vite build",
"lint": "eslint src --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.0-beta.4",
"@storybook/addon-links": "^7.0.0-beta.4",
"@storybook/blocks": "^7.0.0-beta.4",
"@storybook/web-components": "^7.0.0-beta.4",
"@storybook/web-components-vite": "^7.0.0-beta.4",
"@typescript-eslint/eslint-plugin": ">=5.43.0",
"@typescript-eslint/parser": ">=5.43.0",
"autoprefixer": "^10.4.12",
"eslint": ">=8.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.55.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"lit": "^2.4.0",
"lit-html": "^2.5.0",
"postcss": "^8.4.18",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.0-beta.4",
"tailwindcss": "^3.2.0",
"typescript": ">=4.4",
"vite": "^3.1.8"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown",
"eslint --fix"
]
}
}