Back to nextjs

This commit is contained in:
2021-07-31 17:47:08 -04:00
parent edbfd8bb9e
commit b22eb01ca9
61 changed files with 18390 additions and 2373 deletions

View File

@@ -4,16 +4,17 @@
"license": "MIT",
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main",
"nx": "nx",
"start": "ng serve",
"start:fe": "ng serve client",
"start:fe:prod": "sleep 10 && ng serve client --prod",
"start:be": "ng serve api",
"build": "ng build",
"start:be:prod": "node dist/apps/api/main.js",
"build": "ng build api --prod && ng build client",
"test": "ng test",
"lint": "nx workspace-lint && ng lint",
"e2e": "ng e2e",
"dev": "concurrently -p=\"{name}\" -n=\"Angular,NestJS\" -c=\"green,blue\" \"npm run start:fe\" \"npm run start:be\"",
"dev": "concurrently -p=\"{name}\" -n=\"Next,NestJS\" -c=\"green,blue\" \"npm run start:fe\" \"npm run start:be\"",
"prod": "concurrently -p=\"{name}\" -n=\"Next,NestJS\" -c=\"green,blue\" \"npm run start:fe:prod\" \"npm run start:be:prod\"",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
@@ -32,14 +33,6 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^12.1.0",
"@angular/common": "^12.1.0",
"@angular/compiler": "^12.1.0",
"@angular/core": "^12.1.0",
"@angular/forms": "^12.1.0",
"@angular/platform-browser": "^12.1.0",
"@angular/platform-browser-dynamic": "^12.1.0",
"@angular/router": "^12.1.0",
"@nestjs/bull": "^0.4.0",
"@nestjs/common": "^7.0.0",
"@nestjs/config": "^1.0.1",
@@ -49,12 +42,18 @@
"@nestjs/platform-socket.io": "^7.6.18",
"@nestjs/serve-static": "^2.2.2",
"@nestjs/websockets": "^7.6.18",
"@nrwl/angular": "12.6.3",
"bull": "^3.27.0",
"cache-manager": "^3.4.4",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"core-js": "^3.6.5",
"document-register-element": "1.13.1",
"lodash": "^4.17.21",
"next": "11.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "0.13.7",
"rxjs": "~6.6.0",
"split2": "^3.2.2",
"tslib": "^2.0.0",
@@ -62,34 +61,42 @@
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^12.1.0",
"@angular-eslint/eslint-plugin": "~12.3.0",
"@angular-eslint/eslint-plugin-template": "~12.3.0",
"@angular-eslint/template-parser": "~12.3.0",
"@angular/cli": "^12.0.0",
"@angular/compiler-cli": "^12.1.0",
"@angular/language-service": "^12.1.0",
"@angular/cli": "^12.1.4",
"@babel/core": "7.12.13",
"@babel/preset-env": "7.12.13",
"@babel/preset-react": "7.12.13",
"@babel/preset-typescript": "7.12.13",
"@nestjs/schematics": "^7.0.0",
"@nestjs/testing": "^7.0.0",
"@nrwl/cli": "12.6.3",
"@nrwl/cypress": "12.6.3",
"@nrwl/eslint-plugin-nx": "12.6.3",
"@nrwl/jest": "12.6.3",
"@nrwl/linter": "12.6.3",
"@nrwl/nest": "^12.6.3",
"@nrwl/next": "^12.6.3",
"@nrwl/node": "12.6.3",
"@nrwl/react": "12.6.3",
"@nrwl/tao": "12.6.3",
"@nrwl/web": "12.6.3",
"@nrwl/workspace": "12.6.3",
"@testing-library/react": "11.2.6",
"@types/cache-manager": "^3.4.2",
"@types/jest": "26.0.24",
"@types/node": "14.14.33",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@typescript-eslint/eslint-plugin": "~4.28.3",
"@typescript-eslint/parser": "~4.28.3",
"babel-jest": "27.0.6",
"concurrently": "^6.2.0",
"cypress": "^7.3.0",
"dotenv": "~10.0.0",
"eslint": "7.22.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.23.1",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "27.0.3",
"jest-preset-angular": "9.0.4",
"prettier": "^2.3.1",