Created NestJS project root
Showing
- .eslintrc.js 25 additions, 0 deletions.eslintrc.js
- .gitignore 6 additions, 0 deletions.gitignore
- .prettierrc 4 additions, 0 deletions.prettierrc
- README.md 73 additions, 1 deletionREADME.md
- nest-cli.json 5 additions, 0 deletionsnest-cli.json
- package.json 64 additions, 9 deletionspackage.json
- src/app.controller.spec.ts 22 additions, 0 deletionssrc/app.controller.spec.ts
- src/app.controller.ts 12 additions, 0 deletionssrc/app.controller.ts
- src/app.module.ts 10 additions, 0 deletionssrc/app.module.ts
- src/app.service.ts 8 additions, 0 deletionssrc/app.service.ts
- src/main.ts 8 additions, 0 deletionssrc/main.ts
- tsconfig.build.json 4 additions, 0 deletionstsconfig.build.json
- tsconfig.json 21 additions, 0 deletionstsconfig.json
.eslintrc.js
0 → 100644
.prettierrc
0 → 100644
nest-cli.json
0 → 100644
... | ... | @@ -3,18 +3,73 @@ |
"version": "1.0.0", | ||
"description": "Back end service for the internship manager project", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "start" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com-p:hihubbIe/InternshipManager-Back.git" | ||
}, | ||
"keywords": [ | ||
"nestjs", | ||
"nodejs", | ||
"node" | ||
], | ||
"author": "Groupe M2 IL", | ||
"license": "SEE LICENSE IN LICENSE" | ||
"license": "SEE LICENSE IN LICENSE", | ||
"scripts": { | ||
"prebuild": "rimraf dist", | ||
"build": "nest build", | ||
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", | ||
"start": "nest start", | ||
"start:dev": "nest start --watch", | ||
"start:debug": "nest start --debug --watch", | ||
"start:prod": "node dist/main", | ||
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", | ||
"test": "jest", | ||
"test:watch": "jest --watch", | ||
"test:cov": "jest --coverage", | ||
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", | ||
"test:e2e": "jest --config ./test/jest-e2e.json" | ||
}, | ||
"dependencies": { | ||
"@nestjs/common": "^9.0.0", | ||
"@nestjs/core": "^9.0.0", | ||
"@nestjs/platform-express": "^9.0.0", | ||
"reflect-metadata": "^0.1.13", | ||
"rimraf": "^3.0.2", | ||
"rxjs": "^7.2.0" | ||
}, | ||
"devDependencies": { | ||
"@nestjs/cli": "^9.0.0", | ||
"@nestjs/schematics": "^9.0.0", | ||
"@nestjs/testing": "^9.0.0", | ||
"@types/express": "^4.17.13", | ||
"@types/jest": "28.1.8", | ||
"@types/node": "^16.0.0", | ||
"@types/supertest": "^2.0.11", | ||
"@typescript-eslint/eslint-plugin": "^5.0.0", | ||
"@typescript-eslint/parser": "^5.0.0", | ||
"eslint": "^8.0.1", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"jest": "28.1.3", | ||
"prettier": "^2.3.2", | ||
"source-map-support": "^0.5.20", | ||
"supertest": "^6.1.3", | ||
"ts-jest": "28.0.8", | ||
"ts-loader": "^9.2.3", | ||
"ts-node": "^10.0.0", | ||
"tsconfig-paths": "4.1.0", | ||
"typescript": "^4.7.4" | ||
}, | ||
"jest": { | ||
"moduleFileExtensions": [ | ||
"js", | ||
"json", | ||
"ts" | ||
], | ||
"rootDir": "src", | ||
"testRegex": ".*\\.spec\\.ts$", | ||
"transform": { | ||
"^.+\\.(t|j)s$": "ts-jest" | ||
}, | ||
"collectCoverageFrom": [ | ||
"**/*.(t|j)s" | ||
], | ||
"coverageDirectory": "../coverage", | ||
"testEnvironment": "node" | ||
} | ||
} |
src/app.controller.spec.ts
0 → 100644
src/app.controller.ts
0 → 100644
src/app.module.ts
0 → 100644
src/app.service.ts
0 → 100644
src/main.ts
0 → 100644
tsconfig.build.json
0 → 100644
tsconfig.json
0 → 100644
Please register or sign in to comment