forked from typegoose/mongodb-memory-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.99 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
{
"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": "https://github.com/nodkz/mongodb-memory-server",
"devDependencies": {
"@commitlint/cli": "16.2.4",
"@commitlint/config-conventional": "16.2.4",
"@google/semantic-release-replace-plugin": "1.1.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.2.3",
"@semantic-release/npm": "7.1.3",
"@semantic-release/release-notes-generator": "9.0.3",
"@types/jest": "^28.1.8",
"@types/node": "~14.14.45",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"commitlint": "16.2.4",
"conventional-changelog-conventionalcommits": "5.0.0",
"cross-env": "7.0.3",
"doctoc": "2.2.1",
"eslint": "8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "7.0.4",
"jest": "28.1.3",
"lint-staged": "11.2.6",
"prettier": "2.7.1",
"semantic-release": "17.4.7",
"ts-jest": "28.0.8",
"typescript": "4.4.4"
},
"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",
"semantic-release": "semantic-release",
"readme:toc": "doctoc ./README.md",
"postinstall": "husky install",
"website": "yarn --cwd website/ run start"
}
}