-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
109 lines (109 loc) · 3.16 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
{
"name": "nestjs-realworld-example-app",
"version": "1.0.0",
"description": "NestJS + MikroORM realworld API example (MySQL)",
"main": "index.js",
"scripts": {
"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\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest --config=jest.json",
"test:watch": "jest --watch --config=jest.json",
"test:coverage": "jest --config=jest.json --coverage --coverageDirectory=coverage",
"test:e2e": "APIURL=http://localhost:3000/api ./e2e/run-api-tests.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikro-orm/nestjs-realworld-example-app.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikro-orm/nestjs-realworld-example-app/issues"
},
"homepage": "https://github.com/mikro-orm/nestjs-realworld-example-app#readme",
"renovate": {
"extends": [
"config:base",
":preserveSemverRanges",
":semanticCommitTypeAll(chore)"
],
"semanticCommits": "enabled",
"separateMajorMinor": false,
"dependencyDashboard": false,
"lockFileMaintenance": {
"enabled": true,
"schedule": [
"before 2am"
],
"automerge": true,
"automergeType": "branch"
},
"packageRules": [
{
"matchUpdateTypes": [
"patch",
"minor"
],
"groupName": "patch/minor dependencies",
"groupSlug": "all-non-major",
"automerge": true,
"automergeType": "branch"
}
],
"schedule": [
"every weekday"
]
},
"dependencies": {
"@mikro-orm/core": "^6.4.0",
"@mikro-orm/entity-generator": "^6.4.0",
"@mikro-orm/migrations": "^6.4.0",
"@mikro-orm/mysql": "^6.4.0",
"@mikro-orm/nestjs": "^6.0.1",
"@mikro-orm/reflection": "^6.4.0",
"@mikro-orm/sql-highlighter": "^1.0.1",
"@nestjs/common": "^10.3.4",
"@nestjs/core": "^10.3.4",
"@nestjs/platform-express": "^10.3.4",
"@nestjs/swagger": "^8.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"crypto": "^1.0.1",
"crypto-js": "^4.2.0",
"jsonwebtoken": "^9.0.2",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.8.1",
"slug": "^9.0.0",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@mikro-orm/cli": "^6.4.0",
"@mikro-orm/seeder": "^6.4.0",
"@nestjs/cli": "^10.3.2",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.4",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^22.0.0",
"@types/slug": "^5.0.8",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"atob": ">=2.1.2",
"deep-extend": ">=0.6.0",
"eslint": "^8.57.0",
"extend": ">=3.0.2",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "5.7.2"
},
"packageManager": "[email protected]"
}