-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.28 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.28 KB
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
{
"name": "nestjs-playground",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "docker-compose -f ./docker-compose.yml -f docker-compose.dep.yml -f ./docker-compose.dev.yml -p app up --watch",
"start:dep": "docker compose -f ./docker-compose.dep.yml -p app-deps up",
"start:debug:local": "nest start --debug 0.0.0.0:9229 --watch",
"start:prod": "node dist/main",
"repl": "docker compose -f ./docker-compose.yml -f ./docker-compose.repl.yml -p app-repl up --watch -d && docker attach app-repl",
"repl:debug:local": "nest start --debug 0.0.0.0:9229 --watch --entryFile repl",
"docker:package:install": "docker compose exec app sh -c 'npm install'",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:ci": "jest --coverage --ci --reporters=default",
"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 --runInBand",
"test:all:local": "npm run lint && npm run test:ci",
"test:all": "docker compose -f ./docker-compose.yml -f docker-compose.dep.yml -f ./docker-compose.ci.yml -p app-ci up --build --abort-on-container-exit --exit-code-from app --timeout 600 && docker compose -p app-ci down"
},
"dependencies": {
"@mikro-orm/core": "6.6.13",
"@mikro-orm/migrations": "6.6.13",
"@mikro-orm/nestjs": "6.1.2",
"@mikro-orm/postgresql": "6.6.13",
"@nestjs/common": "11.1.19",
"@nestjs/config": "4.0.4",
"@nestjs/core": "11.1.19",
"@nestjs/mapped-types": "2.1.1",
"@nestjs/platform-express": "11.1.19",
"@nestjs/swagger": "11.4.2",
"class-validator": "0.15.1",
"nest-winston": "1.10.2",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2",
"winston": "3.19.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@mikro-orm/cli": "6.6.13",
"@nestjs/cli": "11.0.21",
"@nestjs/schematics": "11.1.0",
"@nestjs/testing": "11.1.19",
"@types/express": "5.0.6",
"@types/jest": "30.0.0",
"@types/node": "24.12.2",
"@types/supertest": "7.2.0",
"eslint": "10.2.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"globals": "17.5.0",
"jest": "30.3.0",
"prettier": "3.8.3",
"rimraf": "6.1.3",
"supertest": "7.2.2",
"ts-jest": "29.4.9",
"ts-loader": "9.5.7",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.9.3",
"typescript-eslint": "8.58.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
}
}