-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
122 lines (122 loc) · 3.69 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "rest-nestjs",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"engines": {
"node": ">=14"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"start": "nest start",
"dev": "nest start --watch",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:check": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"format:fix": "prettier --write \"src/**/*.ts\"",
"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",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config src/ormconfig.ts",
"db:migrate": "npm run typeorm migration:run",
"db:drop": "npm run typeorm schema:drop",
"db:reset": "npm run db:drop && npm run db:migrate",
"antlr4ts": "antlr4ts"
},
"dependencies": {
"@golevelup/nestjs-rabbitmq": "^1.17.1",
"@nestjs/common": "7.6.18",
"@nestjs/config": "0.6.3",
"@nestjs/core": "7.6.18",
"@nestjs/jwt": "^7.2.0",
"@nestjs/passport": "^7.1.6",
"@nestjs/platform-fastify": "^7.6.18",
"@nestjs/swagger": "^4.8.2",
"@nestjs/terminus": "^7.2.0",
"@nestjs/typeorm": "^7.1.5",
"@types/bcrypt": "^5.0.0",
"amqp-connection-manager": "^3.2.2",
"amqplib": "^0.8.0",
"antlr4ts": "^0.5.0-alpha.4",
"argon2": "^0.28.2",
"bcrypt": "^5.0.1",
"cache-manager": "^3.4.4",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"dotenv": "^10.0.0",
"fastify-swagger": "^4.8.3",
"fp-ts": "^2.10.5",
"install": "^0.13.0",
"io-ts": "^2.2.16",
"nestjs-pino": "^1.4.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.6.0",
"pg-connection-string": "^2.5.0",
"pino-pretty": "^5.1.1",
"python-ast": "^0.1.0",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"typedjson": "^1.7.0",
"typeorm": "^0.2.34",
"uuid": "^3.4.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@nestjs/cli": "7.6.0",
"@nestjs/schematics": "7.3.1",
"@nestjs/testing": "7.6.18",
"@tsconfig/node16": "^1.0.1",
"@types/cache-manager": "^3.4.2",
"@types/jest": "26.0.24",
"@types/node": "16.3.3",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"@types/supertest": "2.0.11",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.28.3",
"antlr4ts-cli": "^0.5.0-alpha.4",
"eslint": "^7.31.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "3.4.0",
"jest": "27.0.6",
"prettier": "2.3.2",
"supertest": "6.1.3",
"ts-jest": "27.0.3",
"ts-loader": "9.2.3",
"ts-node": "10.1.0",
"tsconfig-paths": "3.10.1",
"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"
}
}