-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
57 lines (57 loc) · 1.62 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
50
51
52
53
54
55
56
57
{
"name": "client-side-rendering",
"version": "1.0.0",
"engines": {
"node": ">=20.11.0"
},
"type": "module",
"scripts": {
"postinstall": "npm run fetch-static",
"start": "rspack serve",
"prebuild": "npm-run-all -p fetch-static create-sitemap",
"build": "rspack build --mode production",
"serve": "serve build",
"fetch-static": "node scripts/fetch-static",
"create-sitemap": "node scripts/create-sitemap"
},
"dependencies": {
"@emotion/css": "^11.9.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.9.0",
"@mui/material": "^6.1.7",
"@tanstack/react-table": "^8.9.3",
"frontend-essentials": "^7.0.0",
"jquery": "^3.7.0",
"lodash": "^4.17.20",
"moment": "^2.29.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.3.0",
"web-vitals": "^4.1.1",
"zustand": "^5.0.1"
},
"devDependencies": {
"@aaroon/workbox-rspack-plugin": "^0.3.1",
"@rspack/cli": "^1.1.0",
"@rspack/core": "^1.1.0",
"@rspack/plugin-react-refresh": "^1.0.0",
"@svgr/webpack": "^8.0.1",
"@swc/core": "^1.4.11",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.1",
"eslint": "^8.13.0",
"eslint-webpack-plugin": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"npm-run-all": "^4.1.5",
"react-refresh": "^0.14.2",
"serve": "^14.0.1",
"sitemap": "^8.0.0",
"style-loader": "^4.0.0",
"swc-loader": "^0.2.6",
"typescript": "^5.0.4"
}
}