-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.9 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
{
"name": "sharebook",
"private": true,
"version": "0.1.1",
"type": "module",
"scripts": {
"dev": "cross-env NODE_TLS_REJECT_UNAUTHORIZED='0' node server",
"build": "npm run build:client && npm run build:server",
"build:client": "cross-env NODE_ENV=production vite build --outDir dist/client",
"build:server": "cross-env NODE_ENV=production vite build --ssr src/entry-server.tsx --outDir dist/server",
"preview": "cross-env NODE_ENV=production NODE_TLS_REJECT_UNAUTHORIZED='0' node server",
"start": "npm run build && npm run preview",
"lint": "eslint . --fix",
"prettier": "prettier . --write",
"apigen": "cross-env NODE_TLS_REJECT_UNAUTHORIZED='0' node ./node_modules/@rtk-query/codegen-openapi/lib/bin/cli.mjs ./openapi-config.json"
},
"dependencies": {
"@reduxjs/toolkit": "^2.5.1",
"antd": "^5.23.0",
"classnames": "^2.5.1",
"compression": "^1.7.5",
"cookie-parser": "^1.4.7",
"cross-env": "^7.0.3",
"express": "^4.21.2",
"express-http-proxy": "^2.1.1",
"i18next": "^24.2.2",
"i18next-browser-languagedetector": "^8.0.2",
"i18next-fs-backend": "^2.6.0",
"i18next-http-backend": "^3.0.2",
"i18next-http-middleware": "^3.7.1",
"qs": "^6.14.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.4.0",
"react-redux": "^9.2.0",
"react-router": "^7.1.1",
"sirv": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@rtk-query/codegen-openapi": "^2.0.0",
"@types/qs": "^6.9.18",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"sass-embedded": "^1.83.4",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5"
}
}