-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.19 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
{
"name": "typegoose-examples",
"private": true,
"version": "0.0.0",
"description": "Example for Integration with typegoose",
"repository": "https://github.com/typegoose/typegoose-examples",
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.8.1",
"@types/jest": "^29.5.12",
"@types/node": "~16.11.7",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"commitlint": "17.8.1",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "14.0.1",
"prettier": "3.2.5",
"ts-jest": "29.1.5",
"ts-node": "^10.9.2",
"typescript": "4.9.5"
},
"workspaces": {
"packages": [
"examples/*"
]
},
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint -c ./.eslintrc.js \"./**/*.{js,ts}\"",
"test": "jest -c jest.all.config.ts",
"clean": "rimraf lib .tsbuildinfo coverage doc build",
"prepare": "husky install"
},
"dependencies": {
"@typegoose/typegoose": "^12.5.0",
"mongodb-memory-server": "^9.4.0",
"mongoose": "^8.4.3"
}
}