-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 938 Bytes
/
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
{
"scripts": {
"build": "webpack --config webpack.config.js",
"build:admin": "webpack --config webpack.config.admin.js",
"build:public": "webpack --config webpack.config.public.js",
"build:css": "webpack --config webpack.config.js",
"start": "webpack serve --config webpack.config.dev.js",
"watch": "webpack --watch"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"html-webpack-plugin": "^5.6.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"autoprefixer": "^10.4.19",
"css-loader": "^7.1.1",
"postcss-loader": "^8.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.3"
}
}