rsnext/examples/with-firebase-hosting-and-typescript/package.json

42 lines
1.5 KiB
JSON

{
"name": "with-firebase-hosting-and-typescript",
"version": "1.0.0",
"description": "Host Next.js SSR app on Firebase Cloud Functions with Firebase Hosting redirects. Built with typescript.",
"engines": {
"node": "8"
},
"scripts": {
"dev": "next src/app",
"preserve": "npm run build-public && npm run build-functions && npm run build-app && npm run copy-deps && npm run install-deps",
"serve": "cross-env NODE_ENV=production firebase serve",
"deploy": "firebase deploy",
"clean": "rimraf \"dist/functions\" && rimraf \"dist/public\"",
"build-app": "next build \"src/app\"",
"build-public": "cpx \"src/public/**/*.*\" \"dist/public\" -C",
"build-functions": "tsc --project src/functions",
"lint-app": "tslint --project src/app",
"typecheck-app": "tsc --project src/app",
"lint-functions": "tslint --project src/functions",
"copy-deps": "cpx \"*{package.json,package-lock.json,yarn.lock}\" \"dist/functions\" -C",
"install-deps": "cd \"dist/functions\" && npm i"
},
"dependencies": {
"firebase-admin": "^8.0.0",
"firebase-functions": "^3.1.0",
"next": "latest",
"react": "16.8.6",
"react-dom": "16.8.6"
},
"devDependencies": {
"@types/node": "12.0.12",
"@types/react": "^16.6.0",
"@types/react-dom": "16.8.4",
"cpx": "1.5.0",
"cross-env": "5.2.0",
"firebase-tools": "^7.1.0",
"rimraf": "2.6.2",
"tslint": "^5.11.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.0"
}
}