-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
113 lines (113 loc) · 4.01 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
109
110
111
112
113
{
"name": "@hakit/monorepo",
"workspaces": [
"packages/core",
"packages/components",
"packages/create-hakit"
],
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"keywords": [
"react",
"homeassistant",
"home-assistant",
"home-automation",
"socket",
"component",
"library",
"api",
"ha-component-kit",
"@hakit/core",
"@hakit/components",
"dashboard",
"smarthome",
"custom"
],
"scripts": {
"start": "storybook dev -p 6006",
"dev": "npm run start",
"test": "npm run test --workspaces --if-present",
"test:components": "npm run test --workspace=@hakit/components",
"test:core": "npm run test --workspace=@hakit/core",
"build": "VITE_CJS_TRACE=true npm run build:core && npm run build:components && npm run build:create",
"postbuild": "npm run type-check",
"type-check": "tsc --noEmit --project tsconfig-type-check.json",
"build:core": "npm run build --workspace=@hakit/core",
"build:create": "npm run build --workspace=create-hakit",
"build:for:storybook": "npm run build:core --workspace=@hakit/core && npm run build --workspace=@hakit/components",
"build:components": "npm run build --workspace=@hakit/components",
"build:storybook": "BUILD_STORYBOOK=true storybook build",
"watch:build:components": "npm run watch:build --workspace=@hakit/components",
"watch:build:core": "npm run watch:build --workspace=@hakit/core",
"watch:build:sync-script": "npm run watch:build:sync-script --workspace=@hakit/core",
"release": "npm run release --workspaces --if-present",
"release:core": "npm run release --workspace=@hakit/core",
"release:components": "npm run release --workspace=@hakit/components",
"release:create-hakit": "npm run release --workspace=create-hakit",
"test:dashboard": " cd test-dashboard && npm start",
"sync-local-types": "npm run sync-local-types --workspace=@hakit/core",
"sync-locales": "npm run sync-locales --workspace=@hakit/core"
},
"devDependencies": {
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@changesets/cli": "^2.26.2",
"@emotion/babel-plugin": "^11.11.0",
"@emotion/jest": "^11.11.0",
"@mui/material": "^5.15.15",
"@storybook/addon-controls": "^8.0.8",
"@storybook/addon-docs": "^8.0.8",
"@storybook/addon-essentials": "^8.0.8",
"@storybook/addon-interactions": "^8.0.8",
"@storybook/addon-links": "^8.0.8",
"@storybook/addon-themes": "^8.0.8",
"@storybook/blocks": "^8.0.9",
"@storybook/react": "^8.0.8",
"@storybook/react-vite": "^8.0.8",
"@storybook/theming": "^8.0.9",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.95",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.7",
"@types/react": "^18.x",
"@types/react-dom": "^18.x",
"@types/react-window": "^1.8.8",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@typescript-eslint/typescript-estree": "^7.12.0",
"@vitejs/plugin-react": "^4.3.0",
"dotenv": "^16.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.4",
"eslint-plugin-storybook": "^0.6.15",
"framer-motion": "^11.1.7",
"glob": "^10.4.1",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest-localstorage-mock": "^2.4.26",
"prettier": "^3.2.5",
"react": "^18.x",
"react-dom": "^18.x",
"react-element-to-jsx-string": "^15.0.0",
"react-error-boundary": "^4.0.13",
"react-use": "^17.5.0",
"react-window": "^1.8.10",
"storybook": "^8.0.8",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"type-fest": "^4.19.0",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-linter": "^2.1.1",
"vite-tsconfig-paths": "^4.3.2"
}
}