-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
109 lines (109 loc) · 2.77 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "react-select-material-ui",
"version": "9.3.1",
"description": "A react SELECT component based on react-select and looking like a material-ui component",
"main": "lib/index.js",
"sideEffects": false,
"scripts": {
"re-install": "rimraf ./node_modules && yarn install",
"build": "rimraf ./lib && tsc",
"deploy": "cross-env NODE_ENV=production yarn build && yarn npm publish",
"test": "jest",
"storybook:start": "storybook dev -p 6006 -c storybook",
"storybook:build": "storybook build -c storybook -o docs",
"storybook:commit": "git add . && git commit -m \"Updated storybook\"",
"all": "yarn re-install && yarn storybook:build && yarn deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iulian-radu-at/react-select-material-ui.git"
},
"files": [
"lib",
"index.d.ts"
],
"keywords": [
"react-select",
"material-ui",
"react-select-material-ui",
"react",
"react-component",
"select",
"combobox",
"input",
"singleselect",
"multiselect",
"multipleselect",
"tagsselect",
"colorsselect",
"ui",
"material design"
],
"author": "Iulian Radu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iulian-radu-at/react-select-material-ui/issues"
},
"homepage": "https://github.com/iulian-radu-at/react-select-material-ui#readme",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "11.11.0",
"@mui/material": "5.14.20",
"lodash": "4.17.21",
"react-select": "5.8.0"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@storybook/react": "^7.6.4",
"@storybook/react-webpack5": "7.6.4",
"@testing-library/jest-dom": "6.1.5",
"@testing-library/react": "14.1.2",
"@types/lodash": "4.14.202",
"@types/node": "20.10.4",
"@types/react": "18.2.43",
"@types/react-dom": "18.2.17",
"babel-jest": "29.7.0",
"babel-loader": "9.1.3",
"babel-preset-react-app": "10.0.1",
"cross-env": "7.0.3",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "5.0.5",
"storybook": "^7.6.4",
"ts-jest": "29.1.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"jest": {
"modulePathIgnorePatterns": [
"./node_modules",
"./history"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"roots": [
"<rootDir>/src"
],
"transform": {
".+\\.js$": "babel-jest",
".+\\.tsx?$": "ts-jest"
},
"testRegex": "src/.+\\.test\\.tsx$"
},
"packageManager": "[email protected]"
}