-
-
Notifications
You must be signed in to change notification settings - Fork 186
/
Copy pathpackage.json
54 lines (54 loc) · 1.69 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
{
"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": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@types/jest": "^29.5.13",
"@types/node": "~16.11.7",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"commitlint": "17.8.1",
"cross-env": "7.0.3",
"doctoc": "2.2.1",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "14.0.1",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"typedoc": "^0.25.13",
"typescript": "~5.3.3"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"lint-staged": {
"packages/**/*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"./README.md": [
"doctoc ./README.md"
]
},
"scripts": {
"test": "yarn --cwd packages/mongodb-memory-server-core run test",
"lint": "eslint -c ./.eslintrc.js './**/*.{js,ts}'",
"watch": "yarn --cwd packages/mongodb-memory-server-core run watch",
"build": "tsc --build tsconfig.build.json",
"readme:toc": "doctoc ./README.md",
"postinstall": "husky install",
"website": "yarn --cwd website/ run start",
"typedoc": "yarn --cwd packages/mongodb-memory-server-core/ typedoc"
}
}