-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.7 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
{
"name": "@villedemontreal/mongo",
"version": "7.1.3",
"description": "Utilities for Mongo / Mongoose",
"main": "dist/src/index.js",
"typings": "dist/src",
"files": [
"src",
"dist"
],
"scripts": {
"start": "node run test",
"test": "node run test",
"compile": "node run compile",
"lint": "node run lint",
"lint-fix": "node run lint-fix",
"watch": "node run watch"
},
"repository": {
"type": "git",
"url": "https://github.com/VilledeMontreal/node-mongo"
},
"homepage": "https://github.com/VilledeMontreal/node-mongo",
"keywords": [
"mongo",
"mongoose",
"utilities"
],
"author": "Ville de Montréal",
"license": "MIT",
"dependencies": {
"@villedemontreal/general-utils": "5.17.4",
"@villedemontreal/logger": "6.6.2",
"app-root-path": "3.1.0",
"fs-extra": "10.1.0",
"http-status-codes": "2.2.0",
"lodash": "4.17.21",
"mongodb": "4.17.2",
"mongodb-memory-server-core": "8.6.1",
"mongoose": "6.12.6",
"semver": "7.5.2"
},
"devDependencies": {
"@types/http-status-codes": "1.2.0",
"@types/lodash": "4.14.194",
"@types/semver": "7.3.13",
"@types/chai": "4.3.5",
"@types/fs-extra": "9.0.13",
"@types/mocha": "9.1.1",
"@types/sinon": "10.0.13",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"@villedemontreal/scripting": "2.1.8",
"chai": "4.3.7",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "5.1.3",
"mocha": "9.2.2",
"mocha-jenkins-reporter": "0.4.8",
"nyc": "15.1.0",
"sinon": "14.0.1",
"typescript": "5.0.4"
},
"override": {
"mongodb": "$mongodb"
}
}