-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3 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
{
"name": "minimum-tech-stack",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"--- dev options ---": "",
"start:dev:env=local": "ENV_FILE_PATH=environment-variables/.local.env nest start --debug --watch",
"--- database options ---": "",
"db:generate:migration": "ENV_FILE_PATH=environment-variables/.local.env MIKRO_ORM_CLI_CONFIG=src/modules/database/mikro-orm.config.ts yarn mikro-orm migration:create",
"db:migrate:down": "ENV_FILE_PATH=environment-variables/.local.env MIKRO_ORM_CLI_CONFIG=src/modules/database/mikro-orm.config.ts yarn mikro-orm migration:down",
"db:migrate:up": "ENV_FILE_PATH=environment-variables/.local.env MIKRO_ORM_CLI_CONFIG=src/modules/database/mikro-orm.config.ts yarn mikro-orm migration:up",
"--- codegen options ---": "",
"--- prod options ---": "",
"prebuild": "rimraf dist",
"build": "nest build",
"start:prod:env=local": "ENV_FILE_PATH=environment-variables/.local.env node dist/main",
"--- tools ---": "",
"bench": "ts-node src/utils/benchmark.ts"
},
"dependencies": {
"@as-integrations/fastify": "^2.1.1",
"@mikro-orm/cli": "^6.1.11",
"@mikro-orm/core": "^6.1.11",
"@mikro-orm/migrations": "^6.1.11",
"@mikro-orm/nestjs": "^5.2.3",
"@mikro-orm/postgresql": "^6.1.11",
"@mikro-orm/sql-highlighter": "^1.0.1",
"@nestjs/apollo": "^12.1.0",
"@nestjs/common": "^10.3.5",
"@nestjs/config": "^3.2.0",
"@nestjs/core": "^10.3.5",
"@nestjs/graphql": "^12.1.1",
"@nestjs/platform-fastify": "^10.3.5",
"graphql": "^16.8.1",
"joi": "^17.12.0",
"nestjs-cls": "^4.3.0",
"nestjs-pino": "^4.0.0",
"pino-http": "^9.0.0",
"pino-pretty": "^11.0.0",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.8.1",
"ulid": "^2.3.0"
},
"devDependencies": {
"@apollo/server": "^4.10.2",
"@ianvs/prettier-plugin-sort-imports": "3.7.2",
"@nestjs/cli": "^10.3.2",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.5",
"@types/express": "^4.17.13",
"@types/jest": "29.5.0",
"@types/node": "18.15.11",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"apollo-server-core": "^3.13.0",
"axios": "^1.6.8",
"dotenv-flow": "^4.1.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "29.5.0",
"prettier": "^2.3.2",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "29.0.5",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.2.0",
"typescript": "^5.3.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}