-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.46 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
{
"name": "react-ssr-basic-example",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "nodemon --exec vite-node server --watch server --ext ts",
"start": "NODE_ENV=production node dist/server/index.cjs",
"build": "tsc && npm run build:client && npm run build:ssr && npm run build:server",
"build:client": "vite build --outDir dist/client",
"build:ssr": "vite build --outDir dist/ssr --ssr src/entry-server.tsx",
"build:server": "tsup",
"lint": "eslint . --max-warnings=0",
"lint:fix": "pnpm lint --fix",
"types": "tsc"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.1.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/compression": "^1.7.5",
"@types/express": "^5.0.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react-swc": "^3.7.2",
"compression": "^1.7.5",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"express": "^4.21.2",
"globals": "^15.14.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"sirv": "^3.0.0",
"tsup": "^8.3.5",
"typescript": "~5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5",
"vite-node": "^2.1.8"
},
"packageManager": "pnpm@9.15.1"
}