-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 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
87
88
89
90
91
92
93
94
95
{
"name": "@mineew/components-ui",
"version": "0.1.11",
"description": "React UI Components Library",
"keywords": [
"react",
"ui-components",
"tailwindcss",
"zag-js"
],
"author": "Alexandr Mineev <mineew.al@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mineew/components-ui.git"
},
"homepage": "https://mineew.github.io/components-ui/",
"files": [
"lib"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"storybook": "storybook dev -p 6006",
"storybook:test": "test-storybook",
"storybook:build": "storybook build -o storybook-static",
"lint": "run-s lint:eslint lint:ts",
"lint:eslint": "eslint .",
"lint:ts": "tsc --noEmit",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.(t|j)s?(x)\"",
"format:check": "prettier --check \"**/*.(t|j)s?(x)\"",
"clear": "rimraf lib storybook-static",
"clear:cache": "rimraf node_modules/.cache",
"release": "run-s \"release:version -- {1}\" release:push build release:publish --",
"release:version": "npm version",
"release:push": "git push --follow-tags",
"release:publish": "npm publish --access public",
"deps:check": "ncu",
"deps:update": "ncu -ui"
},
"dependencies": {
"@heroicons/react": "2.0.18",
"@react-spring/web": "9.7.3",
"@zag-js/combobox": "0.10.3",
"@zag-js/react": "0.10.3",
"@zag-js/select": "0.10.3",
"@zag-js/tags-input": "0.10.3",
"@zag-js/toast": "0.10.3",
"@zag-js/tooltip": "0.10.3",
"classnames": "2.3.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "7.22.5",
"@babel/preset-react": "7.22.5",
"@babel/preset-typescript": "7.22.5",
"@storybook/addon-a11y": "7.0.24",
"@storybook/addon-actions": "7.0.24",
"@storybook/addon-console": "2.0.0",
"@storybook/addon-essentials": "7.0.24",
"@storybook/addon-interactions": "7.0.24",
"@storybook/addon-styling": "1.3.2",
"@storybook/blocks": "7.0.24",
"@storybook/jest": "0.1.0",
"@storybook/react": "7.0.24",
"@storybook/react-webpack5": "7.0.24",
"@storybook/test-runner": "0.11.0",
"@storybook/testing-library": "0.2.0",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"autoprefixer": "10.4.14",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"npm-check-updates": "16.10.13",
"npm-run-all": "4.1.5",
"postcss": "8.4.24",
"prettier": "2.8.8",
"react-hook-form": "7.45.1",
"rimraf": "5.0.1",
"storybook": "7.0.24",
"tailwindcss": "3.3.2",
"typescript": "5.1.6"
}
}