-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
62 lines (62 loc) · 1.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
{
"name": "material-ui-search-bar",
"version": "1.0.1",
"description": "Material style search bar",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "babel src -d lib --copy-files",
"prepare": "babel src -d lib --copy-files",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"publish-docs": "npm run styleguide:build && npm run gh-pages",
"gh-pages": "./node_modules/.bin/gh-pages -d styleguide",
"prettier": "prettier --write \"**/*.{json,md,js}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamWertarbyte/material-ui-search-bar.git"
},
"keywords": [
"react",
"material",
"material-design",
"material-ui",
"search",
"react-component"
],
"author": "Wertarbyte <[email protected]> (https://wertarbyte.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/TeamWertarbyte/material-ui-search-bar/issues"
},
"homepage": "https://github.com/TeamWertarbyte/material-ui-search-bar#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"gh-pages": "^1.2.0",
"prettier": "^2.0.5",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-styleguidist": "^11.0.8",
"webpack": "^4.44.1",
"webpack-blocks": "^2.1.0"
},
"peerDependencies": {
"@material-ui/core": "^4.0.0",
"@material-ui/icons": "^4.0.0",
"react": ">=16.8.0"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.8"
},
"standard": {
"parser": "babel-eslint"
}
}