-
- Downloads
Merge pull request #5 from ivanalglave/crud-internship
Crud internship
No related branches found
No related tags found
Showing
- .gitignore 0 additions, 3 deletions.gitignore
- package-lock.json 17516 additions, 0 deletionspackage-lock.json
- package.json 5 additions, 4 deletionspackage.json
- src/app.module.ts 8 additions, 2 deletionssrc/app.module.ts
- src/config/config.prod.json 9 additions, 0 deletionssrc/config/config.prod.json
- src/config/index.ts 30 additions, 4 deletionssrc/config/index.ts
- src/internships/dao/internships.dao.ts 230 additions, 0 deletionssrc/internships/dao/internships.dao.ts
- src/internships/dto/create-internship.dto.ts 21 additions, 0 deletionssrc/internships/dto/create-internship.dto.ts
- src/internships/dto/internship.dto.ts 28 additions, 0 deletionssrc/internships/dto/internship.dto.ts
- src/internships/dto/nested-create/address.dto.ts 19 additions, 0 deletionssrc/internships/dto/nested-create/address.dto.ts
- src/internships/dto/nested-create/affectation.dto.ts 46 additions, 0 deletionssrc/internships/dto/nested-create/affectation.dto.ts
- src/internships/dto/nested-create/company.dto.ts 33 additions, 0 deletionssrc/internships/dto/nested-create/company.dto.ts
- src/internships/dto/nested-create/compensation.dto.ts 15 additions, 0 deletionssrc/internships/dto/nested-create/compensation.dto.ts
- src/internships/dto/nested-create/information.dto.ts 42 additions, 0 deletionssrc/internships/dto/nested-create/information.dto.ts
- src/internships/dto/nested-create/student.dto.ts 48 additions, 0 deletionssrc/internships/dto/nested-create/student.dto.ts
- src/internships/dto/nested-create/tracking.dto.ts 35 additions, 0 deletionssrc/internships/dto/nested-create/tracking.dto.ts
- src/internships/entities/internship.entity.ts 12 additions, 0 deletionssrc/internships/entities/internship.entity.ts
- src/internships/entities/nested-entities/address.entity.ts 10 additions, 0 deletionssrc/internships/entities/nested-entities/address.entity.ts
- src/internships/entities/nested-entities/affectation.entity.ts 16 additions, 0 deletions...nternships/entities/nested-entities/affectation.entity.ts
- src/internships/entities/nested-entities/company.entity.ts 13 additions, 0 deletionssrc/internships/entities/nested-entities/company.entity.ts
package-lock.json
0 → 100644
This diff is collapsed.
... | @@ -13,10 +13,10 @@ | ... | @@ -13,10 +13,10 @@ |
"prebuild": "rimraf dist", | "prebuild": "rimraf dist", | ||
"build": "nest build", | "build": "nest build", | ||
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", | "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", | ||
"start": "nest start", | "start": "cross-env NODE_ENV=dev nest start", | ||
"start:dev": "nest start --watch", | "start:dev": "cross-env NODE_ENV=dev nest start --watch", | ||
"start:debug": "nest start --debug --watch", | "start:debug": "cross-env NODE_ENV=dev nest start --debug --watch", | ||
"start:prod": "node dist/main", | "start:prod": "cross-env NODE_ENV=prod node dist/main", | ||
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", | "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", | ||
"test": "jest", | "test": "jest", | ||
"test:watch": "jest --watch", | "test:watch": "jest --watch", | ||
... | @@ -47,6 +47,7 @@ | ... | @@ -47,6 +47,7 @@ |
"@types/supertest": "^2.0.11", | "@types/supertest": "^2.0.11", | ||
"@typescript-eslint/eslint-plugin": "^5.0.0", | "@typescript-eslint/eslint-plugin": "^5.0.0", | ||
"@typescript-eslint/parser": "^5.0.0", | "@typescript-eslint/parser": "^5.0.0", | ||
"cross-env": "^7.0.3", | |||
"eslint": "^8.0.1", | "eslint": "^8.0.1", | ||
"eslint-config-prettier": "^8.3.0", | "eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-prettier": "^4.0.0", | "eslint-plugin-prettier": "^4.0.0", | ||
... | ... |
src/config/config.prod.json
0 → 100644
src/internships/dao/internships.dao.ts
0 → 100644
src/internships/dto/create-internship.dto.ts
0 → 100644
src/internships/dto/internship.dto.ts
0 → 100644
Please register or sign in to comment