-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.83 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
{
"name": "react-select-combobox",
"version": "1.0.3",
"description": "React select control for narrowing down the results",
"author": "softsuave-tech-matrix",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@storybook/addon-essentials": "^7.1.0",
"@storybook/addon-interactions": "^7.1.0",
"@storybook/addon-links": "^7.1.0",
"@storybook/blocks": "^7.1.0",
"@storybook/react": "^7.1.0",
"@storybook/react-vite": "^7.1.0",
"@storybook/testing-library": "^0.2.0",
"@types/react": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"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": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.12",
"husky": "^7.0.4",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^3.26.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.35.0",
"storybook": "^7.1.0",
"typescript": "^4.8.4",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.0"
},
"peerDependencies": {
"react": ">= 16.8 || 18.0.0"
},
"scripts": {
"build-storybook": "storybook build",
"lint:fix": "eslint --fix src/**/*.{js,jsx,ts,tsx}",
"postinstall": "husky install",
"prettierx:all": "prettier --write src/**/*.{js,jsx,ts,tsx}",
"rollup": "rimraf dist && npm run lint:fix && npm run prettierx:all && npm install && rollup -c",
"storybook": "storybook dev -p 6006"
},
"repository": {
"type": "git",
"url": "git+https://github.com/softsuave-tech-matrix/react-select-combobox.git"
},
"bugs": {
"url": "https://github.com/softsuave-tech-matrix/react-select-combobox/issues"
},
"homepage": "https://github.com/softsuave-tech-matrix/react-select-combobox#readme",
"keywords": [
"react",
"react-select",
"react-select-combobox",
"combobox",
"singleselect",
"multiselect",
"select",
"dropdown"
]
}