forked from hc-oss/react-multi-select-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.99 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
80
81
82
{
"name": "react-multi-select-component",
"version": "3.0.7",
"description": "Simple and lightweight multiple selection dropdown component with checkboxes, search and select-all",
"author": "Harsh Zalavadiya",
"license": "MIT",
"repository": "harshzalavadiya/react-multi-select-component",
"main": "dist/index.js",
"module": "dist/react-multi-select-component.esm.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"start": "tsdx watch",
"build": "tsdx build && filesize",
"lint": "tsdx lint",
"prepare": "tsdx build && filesize",
"storybook": "start-storybook -p 6006",
"format": "prettier --write src/**/*",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": ">=16"
},
"dependencies": {
"goober": "^2.0.4"
},
"devDependencies": {
"@ampproject/filesize": "^4.2.0",
"@babel/core": "^7.10.2",
"@storybook/addon-essentials": "^6.0.13",
"@storybook/addon-knobs": "^6.0.13",
"@storybook/addon-links": "^6.0.13",
"@storybook/addon-storysource": "^6.0.13",
"@storybook/addons": "^6.0.13",
"@storybook/react": "^6.0.13",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"babel-loader": "^8.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"react": "^17.0.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"ts-loader": "^8.0.0",
"tsdx": "^0.14.0",
"tslib": "^2.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"files": [
"dist",
"src"
],
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"trailingComma": "es5"
},
"filesize": {
"track": [
"./dist/*.production.min.js"
]
},
"keywords": [
"react",
"multi",
"select",
"checkboxes",
"select-all",
"dropdown",
"component",
"tiny",
"lightweight"
]
}