mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
77 lines
2.1 KiB
JSON
77 lines
2.1 KiB
JSON
{
|
|
"name": "users-application",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"author": "Flusinerd",
|
|
"license": "MIT",
|
|
"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": "echo 'No e2e tests implemented yet.'"
|
|
},
|
|
"dependencies": {
|
|
"@apollo/federation": "0.33.0",
|
|
"@apollo/gateway": "0.42.0",
|
|
"@nestjs/common": "8.0.11",
|
|
"@nestjs/core": "8.0.11",
|
|
"@nestjs/graphql": "9.0.6",
|
|
"@nestjs/platform-express": "8.0.11",
|
|
"apollo-server-express": "2.25.2",
|
|
"graphql": "15.6.1",
|
|
"graphql-tools": "7.0.5",
|
|
"reflect-metadata": "0.1.13",
|
|
"rimraf": "3.0.2",
|
|
"rxjs": "7.4.0",
|
|
"ts-morph": "12.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "8.1.2",
|
|
"@nestjs/schematics": "8.0.3",
|
|
"@nestjs/testing": "8.0.11",
|
|
"@types/express": "4.17.13",
|
|
"@types/jest": "27.0.2",
|
|
"@types/node": "16.0.1",
|
|
"@types/supertest": "2.0.11",
|
|
"@typescript-eslint/eslint-plugin": "4.33.0",
|
|
"@typescript-eslint/parser": "4.33.0",
|
|
"eslint": "7.32.0",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-plugin-prettier": "4.0.0",
|
|
"jest": "27.2.5",
|
|
"prettier": "2.4.1",
|
|
"supertest": "6.1.6",
|
|
"ts-jest": "27.0.6",
|
|
"ts-loader": "9.2.6",
|
|
"ts-node": "10.3.0",
|
|
"tsconfig-paths": "3.11.0",
|
|
"typescript": "4.3.5"
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json",
|
|
"ts"
|
|
],
|
|
"rootDir": "src",
|
|
"testRegex": ".*\\.spec\\.ts$",
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"collectCoverageFrom": [
|
|
"**/*.(t|j)s"
|
|
],
|
|
"coverageDirectory": "../coverage",
|
|
"testEnvironment": "node"
|
|
}
|
|
}
|