-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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": "nest-ssr-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"client": "webpack",
"build": "pnpm webpack & nest build",
"dev": "pnpm webpack & nest start",
"dev:watch": "pnpm webpack & nest start --watch",
"start:prod": "node run/atom/main"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@nestjs/common": "^9.3.9",
"@nestjs/core": "^9.3.9",
"@nestjs/platform-express": "^9.3.9",
"concurrently": "^7.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.2",
"rxjs": "^7.8.0"
},
"devDependencies": {
"@nestjs/schematics": "^9.0.4",
"@nestjs/serve-static": "^3.0.1",
"@types/express": "^4.17.17",
"@types/node": "^18.14.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"html-webpack-plugin": "^5.5.0",
"reflect-metadata": "^0.1.13",
"source-map-loader": "^4.0.1",
"source-map-support": "^0.5.21",
"eslint": "^8.35.0",
"webpack": "^5.75.0",
"ts-node": "^10.9.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}