-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "ssr-playground",
"version": "1.0.0",
"description": "ssr demo",
"main": "index.js",
"scripts": {
"start": "npx nodemon ./server_build/bundle.js",
"build:client": "npx webpack build --config ./webpack.client.js --watch",
"build:server": "npx webpack build --config ./webpack.server.js --watch"
},
"keywords": [
"ssr",
"playground"
],
"author": "zuoqi705",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/express": "^4.17.14",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-helmet": "^6.1.5",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"babel-loader": "^8.2.5",
"eslint": "^8.26.0",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.1",
"nodemon": "^2.0.20",
"ts-loader": "^9.4.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"express": "^4.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.4.2"
}
}