forked from Drassil/nestjs-yalc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.65 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
{
"name": "@nestjs-yalc/framework",
"version": "1.3.2",
"description": "NestJS - Yet Another Library Collection",
"scripts": {
"lint": "npm run lint:no-fix -- --fix",
"lint:no-fix": "eslint -c .eslintrc.js \"**/src/**/*.ts\" --max-warnings=0",
"lint:path": "eslint -c .eslintrc.js $npm_config_lintpath\"/**/*.ts\" --max-warnings=0",
"test": "jest --logHeapUsage",
"test:watch": "npm run test -- --watch",
"test:cov": "npm run test -- --coverage",
"test:cov:serve": "npx http-server -c-1 ./docs/compodoc/jestcoverage/"
},
"author": "",
"license": "MIT",
"workspaces": [
"ag-grid",
"aws-helpers",
"data-loader",
"database",
"field-middleware",
"graphql",
"interfaces",
"jest",
"logger",
"types",
"utils",
"skeleton-module"
],
"dependencies": {
"@apollo/federation": "^0.33.3",
"@apollo/subgraph": "^0.1.2",
"@graphql-tools/wrap": "^8.3.0",
"@kafkajs/confluent-schema-registry": "^3.2.1",
"@nestjs/axios": "^0.0.3",
"@nestjs/common": "^8.1.1",
"@nestjs/config": "^1.0.2",
"@nestjs/core": "^8.1.1",
"@nestjs/event-emitter": "^1.0.0",
"@nestjs/graphql": "^9.1.1",
"@nestjs/jwt": "^8.0.0",
"@nestjs/passport": "^8.0.1",
"@nestjs/platform-fastify": "^8.1.1",
"@nestjs/typeorm": "^8.0.2",
"@sentry/node": "^7.28.1",
"@sentry/tracing": "^7.28.1",
"apollo-server-fastify": "^3.4.0",
"aws-lambda-fastify": "^1.4.4",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.4.0",
"class-validator": "^0.14.0",
"commander": "^7.2.0",
"csurf": "^1.11.0",
"dataloader": "^2.0.0",
"decimal.js": "^10.3.1",
"faker": "^5.5.2",
"fastify-cookie": "^5.3.1",
"google-libphonenumber": "^3.2.21",
"graphql": "^15.5.3",
"graphql-type-json": "^0.3.2",
"mobile-detect": "^1.4.4",
"mysql2": "^2.3.2",
"node-fetch": "^2.6.1",
"p-map": "^4.0.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pino": "^6.11.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.4.0",
"typeorm": "^0.2.41",
"typeorm-model-generator": "^0.4.5",
"typeorm-seeding": "npm:@acore/typeorm-seeding@^1.6.2",
"uuidv4": "^6.2.6"
},
"devDependencies": {
"@golevelup/ts-jest": "^0.3.2",
"@types/jest": "^27.5.1",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^27.5.1",
"prettier": "^2.1.2",
"ts-jest": "^27.1.5",
"ts-node": "^9.1.1",
"typescript": "^4.9.4"
}
}