-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 938 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 938 Bytes
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
{
"name": "site",
"version": "1.0.0",
"dependencies": {
"@babel/core": "^7.25.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.1.1",
"@mui/material": "^7.1.1",
"@mui/utils": "^7.1.1",
"axios": "^1.9.0",
"copy-webpack-plugin": "^12.0.2",
"html-webpack-plugin": "^5.6.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.1",
"react-syntax-highlighter": "^15.6.1"
},
"scripts": {
"watch": "webpack --watch",
"build": "webpack && cp frontend/static/built/index.html backend/src/main/resources/static/built/ && cp frontend/static/built/bundle.js backend/src/main/resources/static/built/"
},
"devDependencies": {
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"babel-loader": "^9.1.3",
"webpack": "5.94.0",
"webpack-cli": "^5.1.4"
}
}