-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "wds-react-post-search",
"author": "WebDevStudios",
"license": "GPL-3.0",
"version": "1.0.6",
"description": "Power up the basic WordPress search field with React.",
"keywords": [
"plugin"
],
"main": "assets/js/public.js",
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server --open --hot --mode development",
"test": "echo \"No test specified\" && exit 1"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@wordpress/html-entities": "^2.5.0",
"babel-loader": "^8.0.6",
"isomorphic-fetch": "^2.2.1",
"query-string": "^6.8.2",
"react": "^16.8.6",
"react-debounce-input": "^3.2.0",
"react-dom": "^16.8.6",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"babel": {
"presets": [
"@babel/env",
"@babel/react"
]
},
"browserslist": [
"last 2 version",
"> 1%",
"maintained node versions",
"not dead"
]
}