-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.23 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
{
"name": "ReactFromScratchWithLatestTechStack",
"version": "1.0.0",
"description": "A React web application created from scratch using React 17, Webpack 5 and Babel 7",
"main": "src/index.js",
"private": true,
"scripts": {
"start": "webpack serve --open --mode development --port 3000 --compress",
"build": "webpack --mode production --progress",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Damini Purohit",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.12.5",
"axios": "^0.21.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.1",
"image-webpack-loader": "^7.0.1",
"mini-css-extract-plugin": "^1.3.4",
"node-sass": "^5.0.0",
"sass-loader": "^10.1.1",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
}
}