-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "react-ssr",
"version": "0.1.0",
"private": true,
"dependencies": {
"koa": "^2.15.3",
"koa-router": "^11.0.2",
"koa-static": "^5.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.25.1"
},
"scripts": {
"dev:client": "pnpm parcel src/index.tsx --no-source-maps --log-level=warn --dist-dir .parcel --hmr-port 4000",
"dev:server": "NODE_ENV=development nodemon --exec ts-node --emit ./server.tsx",
"dev": "run-p dev:*"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"devDependencies": {
"@types/koa": "^2.15.0",
"@types/koa-router": "^7.4.8",
"@types/koa-static": "^4.0.4",
"@types/node": "^18.19.41",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5",
"parcel": "^2.12.0",
"process": "^0.11.10",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"engines": {
"node": "18"
},
"packageManager": "[email protected]"
}