-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.98 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
{
"name": "@hivemq/ui-library",
"version": "1.0.0",
"type": "module",
"main": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"types": "./dist/index.d.ts",
"module": "./dist/index.es.js"
},
"files": ["dist"],
"engines": {
"node": "20",
"pnpm": "9"
},
"scripts": {
"build": "pnpm build:scripts",
"build:scripts": "vite build",
"build:types": "tsc --emitDeclarationOnly && tsc-alias",
"build:styles": "NODE_ENV=production pnpm tailwindcss -i ./src/styles/globals.css -o ./dist/styles.css --postcss --minify",
"publish:ci": "pnpm publish --no-git-checks",
"publish:dry": "pnpm publish --no-git-checks --dry-run",
"lint:check": "biome check ./src",
"lint:check:write": "biome check --write --unsafe ./src",
"lint:headers": "node check-headers.js",
"lint:check:all": "pnpm run lint:check && pnpm run lint:headers",
"lint:format": "biome format ./src",
"lint:format:write": "biome format --write ./src",
"lint:all": "pnpm run lint:check && pnpm run lint:headers && pnpm run lint:format",
"test:unit": "TZ=UTC pnpm vitest run --outputFile.junit=./test-results/junit.xml",
"test:unit:ci": "pnpm test:unit --coverage --silent",
"preview": "vite preview",
"storybook": "BUILD_ENV='storybook' storybook dev -p 6006",
"storybook:build": "BUILD_ENV='storybook' storybook build"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@chakra-ui/cli": "^2.4.1",
"@chakra-ui/react": "^2.10.4",
"@chakra-ui/styled-system": "^2.11.2",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@fontsource/raleway": "^5.0.19",
"@fontsource/roboto": "^5.0.13",
"@radix-ui/react-slot": "^1.1.0",
"@storybook/addon-a11y": "^8.2.6",
"@storybook/addon-essentials": "^8.2.4",
"@storybook/addon-interactions": "^8.2.4",
"@storybook/addon-links": "^8.2.4",
"@storybook/addon-onboarding": "^8.2.4",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^8.2.4",
"@storybook/manager-api": "^8.2.4",
"@storybook/react": "^8.2.4",
"@storybook/react-vite": "^8.2.4",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^8.2.4",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.0.3",
"autoprefixer": "^10.4.19",
"lucide-react": "^0.410.0",
"postcss": "^8.4.39",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^8.2.4",
"tailwindcss": "^3.4.6",
"tsc-alias": "^1.8.10",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vite-plugin-dts": "4.0.0-beta.1",
"vite-plugin-static-copy": "^1.0.6",
"vitest": "^2.0.3"
},
"peerDependencies": {
"@chakra-ui/react": "^2.10.4",
"@chakra-ui/styled-system": "^2.11.2",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@hivemq/ui-theme": "^0.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}