-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.02 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.02 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
{
"name": "wp-react-plugin",
"version": "0.0.1",
"description": "Develop React apps easily inside of WordPress with this plugin. Uses React Hot Loader to update changes in real time while also preserving React state.",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server",
"prod": "cross-env NODE_ENV=production webpack"
},
"author": "David Gwyer",
"license": "GPL-3.0+",
"dependencies": {
"react": "^16.8.6",
"react-debounce-input": "^3.2.0",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.1",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"node-sass": "^4.12.0",
"react-hot-loader": "^4.8.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
}
}