-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.22 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.22 KB
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
{
"name": "uic-pack",
"description": "UI Component Pack to speed up React + TailwindCSS development",
"version": "0.4.1",
"keywords": [
"tailwind",
"UI",
"components"
],
"bugs": "https://github.com/Reterics/uic-pack/issues",
"author": {
"name": "Attila Reterics",
"url": "https://github.com/Reterics",
"email": "[email protected]"
},
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Reterics/uic-pack.git"
},
"main": "dist/uic-pack.js",
"module": "dist/uic-pack.js",
"types": "dist/uic-pack.d.ts",
"files": [
"dist",
"docs"
],
"scripts": {
"build": "vite build",
"dev": "vite",
"format": "prettier --check --ignore-path .gitignore ./src",
"format:fix": "prettier --write --ignore-path .gitignore ./src",
"prepare": "npm run build",
"release": "semantic-release",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0"
},
"devDependencies": {
"@chromatic-com/storybook": "3.2.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@storybook/addon-essentials": "8.5.1",
"@storybook/addon-interactions": "8.5.1",
"@storybook/addon-themes": "8.5.1",
"@storybook/blocks": "8.5.1",
"@storybook/react": "8.5.1",
"@storybook/react-vite": "8.5.1",
"@storybook/test": "8.5.1",
"@types/node": "^22.10.10",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"eslint-plugin-storybook": "^0.11.2",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"semantic-release": "^24.2.1",
"storybook": "8.5.1",
"tailwindcss": "^3.4.17",
"typescript": "5.7.3",
"vite": "^6.0.11",
"vite-plugin-dts": "^4.5.0"
}
}