-
-
Notifications
You must be signed in to change notification settings - Fork 187
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.48 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.48 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
{
"name": "mongodb-memory-server-monorepo",
"private": true,
"version": "0.0.0",
"description": "In-memory MongoDB Server. Designed with testing in mind, the server will allow you to connect your favourite ODM or client library to the MongoDB Server and run integration tests isolated from each other.",
"repository": {
"type": "git",
"url": "git+https://github.com/typegoose/mongodb-memory-server.git"
},
"devDependencies": {
"@commitlint/cli": "20.2.0",
"@commitlint/config-conventional": "20.2.0",
"@types/jest": "^30.0.0",
"@types/node": "~24.10.0",
"commitlint": "20.2.0",
"doctoc": "2.2.1",
"eslint": "9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "5.5.4",
"husky": "9.1.7",
"jest": "30.2.0",
"lint-staged": "16.2.7",
"prettier": "3.7.4",
"ts-jest": "29.4.6",
"typedoc": "^0.28.15",
"typescript": "~5.9.3",
"typescript-eslint": "8.49.0"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"packages/**/*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"./README.md": [
"doctoc ./README.md"
]
},
"scripts": {
"test": "npm run --workspace=mongodb-memory-server-core test",
"lint": "eslint -c ./eslint.config.mjs .",
"build": "tsc --build tsconfig.build.json",
"readme:toc": "doctoc ./README.md",
"postinstall": "husky",
"website": "npm run --prefix website/ start",
"typedoc": "npx --workspace=mongodb-memory-server-core typedoc"
}
}