You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
682 B
26 lines
682 B
5 years ago
|
{
|
||
|
"private": true,
|
||
|
"name": "react-ssr-tsx-starter",
|
||
|
"scripts": {
|
||
|
"dev": "tsnd --project tsconfig.server.json server/main.ts",
|
||
|
"build": "tsc --project tsconfig.server.json",
|
||
|
"start": "cross-env NODE_ENV=production node dist/main.js"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@react-ssr/core": "^0.21.18",
|
||
|
"@react-ssr/express": "^0.21.18",
|
||
|
"express": "^4.17.1",
|
||
|
"react": "^16.13.0",
|
||
|
"react-dom": "^16.13.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/express": "^4.17.1",
|
||
|
"@types/node": "^12.11.6",
|
||
|
"@types/react": "^16.9.11",
|
||
|
"@types/react-dom": "^16.9.4",
|
||
|
"cross-env": "^7.0.2",
|
||
|
"ts-node-dev": "^1.0.0-pre.44",
|
||
|
"typescript": "^3.8.3"
|
||
|
}
|
||
|
}
|