-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.25 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
{
"name": "webpack4_with_zero_configuration",
"version": "1.0.0",
"description": "Bundled JavaScript file will be created without any Webpack configuration.",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --config webpack.config.js --open --hot",
"prebuild": "rimraf ./build && mkdir build",
"build": "webpack --config webpack.config.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qmohitsingh/Webpack4_With_Zero_Configuration.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/qmohitsingh/Webpack4_With_Zero_Configuration/issues"
},
"homepage": "https://github.com/qmohitsingh/Webpack4_With_Zero_Configuration#readme",
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0"
},
"engines": {
"node": ">=8"
},
"babel": {
"presets": [
"babel-preset-react-app"
]
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-react": "^7.12.7",
"babel-loader": "^8.2.1",
"babel-preset-react-app": "^10.0.0",
"html-webpack-plugin": "^4.5.0",
"webpack": "^4.29.6",
"webpack-cli": "3.3.0",
"webpack-dev-server": "^3.11.0"
}
}