-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
98 lines (98 loc) · 2.85 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
{
"name": "backend-template",
"version": "0.0.1",
"description": "Template for back-end applications.",
"private": true,
"license": "UNLICENSED",
"bin": "build/src/main.js",
"pkg": {
"scripts": "build/**/*.js",
"assets": [
"build/**/*"
],
"targets": [
"node16"
]
},
"prisma": {
"seed": "ts-node -r tsconfig-paths/register prisma/seed.ts"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc && tsc-alias && 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.config.ts",
"prepare": "husky install"
},
"dependencies": {
"@faker-js/faker": "6.1.1",
"@nestjs/apollo": "10.0.8",
"@nestjs/common": "8.4.3",
"@nestjs/config": "2.0.0",
"@nestjs/core": "8.4.3",
"@nestjs/graphql": "10.0.8",
"@nestjs/passport": "9.0.0",
"@nestjs/platform-express": "8.4.3",
"@prisma/client": "4.10.1",
"apollo-server-express": "3.6.7",
"apollo-server-plugin-base": "3.5.2",
"class-transformer": "0.5.1",
"class-validator": "0.13.2",
"dd-trace": "2.4.1",
"dotenv-expand": "8.0.3",
"graphql": "16.3.0",
"graphql-query-complexity": "0.11.0",
"mysql2": "3.2.0",
"nestjs-pino": "2.5.2",
"passport": "0.6.0",
"passport-jwt": "4.0.1",
"pino-http": "6.6.0",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "7.5.5"
},
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@nestjs/cli": "8.2.4",
"@nestjs/schematics": "8.0.8",
"@nestjs/testing": "8.4.3",
"@rocketseat/commitlint-config": "0.0.3",
"@swc/cli": "0.1.57",
"@swc/core": "1.2.120",
"@swc/jest": "0.2.20",
"@types/express": "4.17.13",
"@types/jest": "27.4.1",
"@types/node": "16.11.26",
"@types/passport-jwt": "3.0.8",
"@types/pg": "8.6.5",
"@types/supertest": "2.0.12",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import-helpers": "1.2.1",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "27.5.1",
"pino-pretty": "7.6.0",
"prettier": "2.4.0",
"prisma": "4.10.1",
"supertest": "6.2.2",
"ts-jest": "27.1.4",
"ts-loader": "9.2.8",
"ts-node": "10.7.0",
"tsc-alias": "1.8.2",
"tsconfig-paths": "3.14.1",
"typescript": "4.6.3"
}
}