-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1 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
{
"name": "react-with-swc",
"version": "1.0.0",
"description": "react app with webpack & swc compiler",
"main": "index.js",
"author": "Mahmoud Ibrahiam",
"license": "MIT",
"private": false,
"devDependencies": {
"@swc/core": "^1.3.57",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^5.5.1",
"mini-css-extract-plugin": "^2.7.5",
"style-loader": "^3.3.2",
"swc-loader": "^0.2.3",
"terser-webpack-plugin": "^5.3.8",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0",
"webpack-merge": "^5.8.0",
"webpackbar": "^5.0.2"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"dev": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
}
}