forked from mikro-orm/mikro-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
138 lines (138 loc) · 3.76 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@mikro-orm/root",
"private": true,
"workspaces": [
"packages/*"
],
"version": "6.0.0",
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mikro-orm/mikro-orm.git"
},
"funding": "https://github.com/sponsors/b4nan",
"keywords": [
"orm",
"mongo",
"mongodb",
"mysql",
"mariadb",
"postgresql",
"sqlite",
"sqlite3",
"ts",
"typescript",
"js",
"javascript",
"entity",
"ddd",
"mikro-orm",
"unit-of-work",
"data-mapper",
"identity-map"
],
"author": "Martin Adámek",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikro-orm/mikro-orm/issues"
},
"homepage": "https://mikro-orm.io",
"scripts": {
"postinstall": "husky install",
"clean": "yarn workspaces foreach -Ap run clean",
"build": "yarn workspaces foreach -Ap --topological-dev run build",
"publish:prod": "lerna publish from-package --contents dist --force-publish",
"release:prod": "yarn build && yarn publish:prod",
"publish:next": "lerna publish from-package --contents dist --dist-tag next --force-publish",
"release:next": "lerna run compile && yarn publish:next",
"release:pin-versions": "lerna run copy -- -- --pin-versions",
"test": "jest",
"clean-tests": "rimraf temp tests/generated-entities",
"tsc-check-tests": "tsc --noEmit --project tests/tsconfig.json",
"coverage": "yarn clean-tests && yarn test --coverage",
"lint": "eslint \"packages/**/*.ts\" \"tests/**/*.ts\""
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"eslint \"packages/**/*.ts\" \"tests/**/*.ts\" --fix"
]
},
"renovate": {
"extends": [
"config:base",
":preserveSemverRanges",
":semanticCommitTypeAll(chore)"
],
"semanticCommits": "enabled",
"separateMajorMinor": false,
"dependencyDashboard": false,
"packageRules": [
{
"matchUpdateTypes": [
"patch",
"minor"
],
"groupName": "patch/minor dependencies",
"groupSlug": "all-non-major",
"automerge": true,
"automergeType": "branch"
}
],
"schedule": [
"every weekday"
],
"ignoreDeps": [
"mysql",
"ts-jest"
]
},
"engines": {
"node": ">= 18.12.0",
"yarn": ">=3.2.0"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@mikro-orm/mongo-highlighter": "1.0.0",
"@mikro-orm/sql-highlighter": "1.0.1",
"@side/jest-runtime": "^1.1.0",
"@types/esprima": "4.0.6",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.12",
"@types/node": "20.14.11",
"@types/pg": "8.11.6",
"@types/semver": "^7.5.8",
"@types/sqlstring": "2.3.2",
"@types/uuid": "10.0.0",
"@types/webpack-env": "1.18.5",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"bson": "^6.7.0",
"conditional-type-checks": "1.0.6",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-unused-imports": "4.0.0",
"fs-extra": "11.2.0",
"gen-esm-wrapper": "1.1.3",
"guid-typescript": "1.0.9",
"husky": "9.1.1",
"jest": "29.7.0",
"lerna": "8.1.7",
"lint-staged": "15.2.7",
"mongodb": "6.8.0",
"mongodb-memory-server": "10.0.0",
"rimraf": "6.0.1",
"ts-jest": "29.2.0",
"ts-node": "10.9.2",
"typescript": "5.5.3",
"uuid": "10.0.0"
},
"packageManager": "[email protected]"
}