-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathpackage.json
65 lines (65 loc) · 1.82 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
{
"name": "react-search-field",
"version": "2.0.1",
"description": "This is a simple search field component for react",
"main": "dist/index.min.js",
"scripts": {
"build:component": "rm -rf dist/ && webpack -p --progress --config=webpack.production.config.js",
"build:docs": "rm -rf docs/ && webpack -p --progress",
"build": "npm run build:component && npm run build:docs",
"start": "npm run build:docs && webpack-dev-server",
"test": "jest",
"lint": "eslint src"
},
"keywords": [
"react",
"react search",
"react search field",
"react search component",
"searchbar",
"search"
],
"repository": {
"type": "git",
"url": "https://github.com/nutboltu/react-search-field.git"
},
"dependencies": {
"prop-types": "15.7.2",
"typeco": "1.0.0"
},
"devDependencies": {
"@babel/core": "7.6.4",
"@babel/node": "7.6.3",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/preset-env": "7.6.3",
"@babel/preset-react": "7.6.3",
"babel-eslint": "10.1.0",
"babel-loader": "8.0.6",
"copy-webpack-plugin": "6.0.3",
"css-loader": "3.2.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.15.1",
"eslint": "6.5.1",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"html-webpack-plugin": "3.2.0",
"jest": "^24.9.0",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-github-btn": "1.2.0",
"react-syntax-highlighter": "13.5.1",
"style-loader": "1.0.0",
"terser-webpack-plugin": "4.1.0",
"webpack": "4.41.1",
"webpack-cli": "3.3.9",
"webpack-dev-server": "3.11.0"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": "16.9.0"
},
"author": "Farhad Yasir",
"license": "MIT"
}