-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "@appgeist/react-select-material-ui",
"version": "1.4.3",
"description": "An outlined Material-UI input component based on react-select",
"keywords": [
"react",
"react-select",
"material-ui",
"ui",
"material"
],
"author": {
"name": "Ionut-Cristian Florescu",
"email": "ionut.florescu@gmail.com",
"url": "https://github.com/icflorescu"
},
"repository": "https://github.com/appgeist/react-select-material-ui",
"bugs": {
"url": "https://github.com/appgeist/react-select-material-ui/issues"
},
"license": "ISC",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"prepublishOnly": "babel src --out-dir ./dist -s"
},
"files": [
"dist/*",
"index.d.ts"
],
"peerDependencies": {
"@material-ui/core": "^4.5.0",
"@material-ui/styles": "^4.5.0",
"clsx": "^1.0.4",
"prop-types": "^15.7.2",
"react": "^16.10.2"
},
"devDependencies": {
"@appgeist/eslint-config-react": "^1.4.2",
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@material-ui/core": "^4.5.0",
"@material-ui/styles": "^4.5.0",
"@types/node": "^12.7.12",
"@types/react-select": "^3.0.5",
"babel-plugin-root-import": "^6.4.1",
"clsx": "^1.0.4",
"prop-types": "^15.7.2",
"react": "^16.10.2"
},
"dependencies": {
"react-select": "^3.0.8"
}
}