(feat): working mvp of ssr
Showing
containers/server/Dockerfile
0 → 100644
This diff is collapsed.
| { | ||
| "name": "v5.x", | ||
| "name": "minds", | ||
| "version": "0.0.0", | ||
| "license": "MIT", | ||
| "scripts": { | ||
| ... | ... | @@ -8,41 +8,49 @@ |
| "preinstall": "git config core.hooksPath .git/hooks/", | ||
| "prebuild": "gulp build.sass", | ||
| "build": "ng build --prod", | ||
| "prebuild-dev": "gulp build.sass --deploy-url=http://localhost/en", | ||
| "build-dev": "ng build --output-path dist/en --deploy-url=/en/ --watch=true --poll=800", | ||
| "prebuild-dev": "gulp build.sass --deploy-url=http://localhost", | ||
| "build-dev": "ng build --output-path dist --deploy-url=/ --watch=true --poll=800", | ||
| "serve-dev": "ng serve --host=0.0.0.0 --deploy-url=/en/ --configuration=hmr --hmr --poll=800 --progress", | ||
| "test": "ng test", | ||
| "lint": "ng lint", | ||
| "e2e": "cypress run --debug", | ||
| "e2e-open": "cypress open", | ||
| "postinstall": "node patch.js" | ||
| "postinstall": "node patch.js", | ||
| "compile:server": "webpack --config webpack.server.config.js --progress --colors", | ||
| "serve:ssr": "node dist/server", | ||
| "build:ssr": "npm run build:client-and-server-bundles && npm run compile:server", | ||
| "build:client-and-server-bundles": "ng build --prod && ng run minds:server:production" | ||
| }, | ||
| "private": true, | ||
| "dependencies": { | ||
| "@angular/animations": "~8.0.3", | ||
| "@angular/common": "~8.0.3", | ||
| "@angular/compiler": "~8.0.3", | ||
| "@angular/core": "~8.0.3", | ||
| "@angular/forms": "~8.0.3", | ||
| "@angular/animations": "~8.1.1", | ||
| "@angular/common": "~8.1.1", | ||
| "@angular/compiler": "~8.1.1", | ||
| "@angular/core": "~8.1.1", | ||
| "@angular/forms": "~8.1.1", | ||
| "@angular/http": "~7.2.0", | ||
| "@angular/platform-browser": "~8.0.3", | ||
| "@angular/platform-browser-dynamic": "~8.0.3", | ||
| "@angular/router": "~8.0.3", | ||
| "@nguniversal/common": "~8.0.3", | ||
| "@nguniversal/module-map-ngfactory-loader": "~8.0.3", | ||
| "@nguniversal/socket-engine": "~8.0.3", | ||
| "@angular/platform-browser": "~8.1.1", | ||
| "@angular/platform-browser-dynamic": "~8.1.1", | ||
| "@angular/platform-server": "~8.1.1", | ||
| "@angular/router": "~8.1.1", | ||
| "@gorniv/ngx-universal": "^2.0.1", | ||
| "@nguniversal/common": "~8.1.1", | ||
| "@nguniversal/express-engine": "^8.1.1", | ||
| "@nguniversal/module-map-ngfactory-loader": "~8.1.1", | ||
| "@nguniversal/socket-engine": "~8.1.1", | ||
| "@sentry/browser": "^5.6.2", | ||
| "angular-plotly.js": "^1.3.2", | ||
| "bn.js": "^4.11.8", | ||
| "braintree-web": "3.41.0", | ||
| "cookie-parser": "^1.4.4", | ||
| "core-js": "~2.6.2", | ||
| "dexie": "^2.0.4", | ||
| "ethjs": "~0.4.0", | ||
| "ethjs-account": "^0.1.4", | ||
| "ethjs-provider-signer": "^0.1.4", | ||
| "ethjs-signer": "0.1.1", | ||
| "express-http-proxy": "^1.6.0", | ||
| "global": "^4.3.2", | ||
| "indexeddbshim": "^4.1.0", | ||
| "material-datetime-picker": "git+https://github.com/Minds/material-datetime-picker.git", | ||
| "material-design-icons": "~3.0.1", | ||
| "material-design-lite": "~1.3.0", | ||
| ... | ... | @@ -61,10 +69,10 @@ |
| "zone.js": "~0.9.1" | ||
| }, | ||
| "devDependencies": { | ||
| "@angular-devkit/build-angular": "~0.13.9", | ||
| "@angular/cli": "^7.2.1", | ||
| "@angular/compiler-cli": "~8.0.3", | ||
| "@angular/language-service": "~8.0.3", | ||
| "@angular-devkit/build-angular": "0.803.21", | ||
| "@angular/cli": "^8.1.1", | ||
| "@angular/compiler-cli": "~8.1.1", | ||
| "@angular/language-service": "~8.1.1", | ||
| "@angularclass/hmr": "^2.1.3", | ||
| "@types/jasmine": "~2.8.8", | ||
| "@types/jasminewd2": "~2.0.4", | ||
| ... | ... | @@ -95,7 +103,7 @@ |
| "ts-node": "~7.0.0", | ||
| "tslint": "~5.12.0", | ||
| "typescript": "~3.4.5", | ||
| "webpack-cli": "^3.3.2" | ||
| "webpack-cli": "^3.3.10" | ||
| }, | ||
| "husky": { | ||
| "hooks": { | ||
| ... | ... |
src/index.html
0 → 100644
src/index.php
deleted
100644 → 0
Please register or sign in to comment