-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 831 Bytes
/
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
{
"private": true,
"name": "react-ssr-redux-todo-app",
"license": "MIT",
"scripts": {
"dev": "tsnd --project tsconfig.server.json server/main.ts",
"build": "rimraf dist && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/main.js"
},
"dependencies": {
"@react-ssr/core": "^0.22.0",
"@react-ssr/express": "^0.22.0",
"express": "^4.17.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5"
},
"devDependencies": {
"@types/express": "^4.17.3",
"@types/node": "^12.12.31",
"@types/react": "^16.9.26",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"cross-env": "^7.0.2",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
}
}