experiments with docker packaging, figuring out deploy plan

This commit is contained in:
Amruth Pillai
2022-03-03 12:24:32 +01:00
parent 2aa3786f5f
commit 58160b2b6e
20 changed files with 1068 additions and 372 deletions

View File

@ -10,7 +10,9 @@
"serve": "nx run-many --target=serve --all",
"test": "nx run-many --target=test --all",
"lint": "nx run-many --target=lint --all --fix",
"start": "nx run-many --target=serve --all --prod",
"start:server": "node dist/apps/server/main",
"start:client": "cd dist/apps/client && npm start",
"start": "concurrently --kill-others \"npm run start:server\" \"npm run start:client\"",
"build": "nx run-many --target=build --all --prod",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,json}\"",
"prepare": "husky install",
@ -55,6 +57,7 @@
"downloadjs": "^1.4.7",
"googleapis": "^95.0.0",
"handlebars": "^4.7.7",
"i18next-http-backend": "^1.3.2",
"joi": "^17.6.0",
"lodash": "^4.17.21",
"md5-hex": "^4.0.0",
@ -93,6 +96,7 @@
"regenerator-runtime": "0.13.9",
"remark-gfm": "^3.0.1",
"rxjs": "^7.5.4",
"sharp": "^0.30.2",
"tailwindcss": "^3.0.23",
"tslib": "^2.3.1",
"typeorm": "^0.2.44",
@ -138,6 +142,7 @@
"@typescript-eslint/parser": "~5.10.2",
"babel-jest": "27.5.1",
"babel-loader": "^8.2.3",
"concurrently": "^7.0.0",
"csstype": "^3.0.10",
"cypress": "^9.5.1",
"eslint": "~8.10.0",