-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.34 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
{
"name": "php-hmr",
"version": "1.0.0",
"scripts": {
"start": "webpack-dev-server --config webpack/webpack.config.dev.js",
"build": "webpack --config webpack/webpack.config.prod.js"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@webpack-cli/serve": "^1.2.1",
"autoprefixer": "^10.2.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.2.0",
"mini-css-extract-plugin": "^1.3.3",
"node-sass": "^4.14.1",
"postcss": "^8.2.1",
"postcss-loader": "^4.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-reconciler": "^0.26.1",
"react-refresh": "^0.9.0",
"sass": "^1.26.10",
"sass-loader": "^9.0.0",
"style-loader": "^2.0.0",
"webpack": "^5.11.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^4.0.0-beta.0"
},
"description": "An example of how to use hot module replacement with a PHP backend. It also supports React with the React Refresh Webpack Plugin.",
"repository": "https://github.com/dirkjf/php-hmr",
"author": "Dirk Faber <[email protected]>",
"license": "MIT",
"browserslist": [
"last 1 version",
"> 1%",
"not dead"
]
}