-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.34 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
{
"name": "xpress-mongo",
"version": "3.0.4",
"description": "Light Weight ODM for mongoDb NodeJs",
"main": "index.js",
"types": "index.d.ts",
"directories": {
"test": "tests"
},
"scripts": {
"build": "npx tsc",
"play": "npx ts-node-dev --respawn tests/index.ts",
"test": "npm run build && node JapaFile.js",
"test-dev": "npx nodemon JapaFile.js --watch 'tests/**' --ext 'ts'",
"watch": "npx tsc --watch",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xpresserjs/xpress-mongo.git"
},
"keywords": [
"mongodb",
"odm"
],
"author": "xpresserjs",
"license": "ISC",
"bugs": {
"url": "https://github.com/xpresserjs/xpress-mongo/issues"
},
"homepage": "https://github.com/xpresserjs/xpress-mongo#readme",
"dependencies": {
"deep-object-diff": "^1.1.9",
"escape-string-regexp-node": "^1.0.2",
"joi": "^17.11.0",
"mongodb": "6.2.0",
"object-collection": "^3.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/chance": "^1.1.5",
"@types/node": "^20.8.10",
"@types/uuid": "^9.0.6",
"chance": "^1.1.11",
"japa": "^4.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=14"
}
}