rsnext/examples/custom-server-typescript/package.json
2020-08-29 22:32:35 -04:00

24 lines
582 B
JSON

{
"name": "custom-server-typescript",
"version": "1.0.0",
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/index.js"
},
"dependencies": {
"cross-env": "^7.0.2",
"next": "latest",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@types/node": "^12.0.12",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "4.0"
},
"license": "MIT"
}