-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.26 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
45
46
{
"name": "webpack-react",
"version": "1.0.0",
"description": "React project build setup using webpack 4.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --open --config webpack.dev.js --progress",
"build": "webpack --config webpack.prod.js --mode production"
},
"keywords": [
"react",
"babel"
],
"author": "Nabaraj Saha",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-core": "6.26.3",
"babel-loader": "8.0.5",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "2.1.1",
"html-webpack-plugin": "3.2.0",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "4.12.0",
"path": "0.12.7",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"url-loader": "^1.1.2",
"webpack": "4.30.0",
"webpack-cli": "3.3.1",
"webpack-dev-server": "3.3.1",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"file-loader": "^3.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}