-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
49 lines (49 loc) · 1.48 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
41
42
43
44
45
46
47
48
49
{
"name": "client-side-rendering",
"version": "1.0.0",
"scripts": {
"start": "webpack serve --mode development",
"prebuild": "npm-run-all -p fetch-static create-sitemap",
"build": "webpack --mode production",
"serve": "serve build",
"fetch-static": "node scripts/fetch-static.mjs",
"create-sitemap": "node scripts/create-sitemap.mjs"
},
"dependencies": {
"@emotion/css": "^11.9.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/material": "^5.6.2",
"frontend-essentials": "^2.0.0",
"lodash": "^4.17.20",
"moment": "^2.29.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.3.0",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@svgr/webpack": "^6.2.1",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.13.0",
"eslint-webpack-plugin": "^3.1.1",
"fork-ts-checker-webpack-plugin": "^7.2.6",
"html-webpack-plugin": "^5.5.0",
"npm-run-all": "^4.1.5",
"react-refresh-typescript": "^2.0.5",
"serve": "^14.0.1",
"sitemap": "^7.1.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
}
}