-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "mongo-db-wrapper-interfaces",
"version": "0.1.2",
"description": "TypeScript based mongoDB wrapper ",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"start": "ts-node ./src/index.ts",
"run-index": "node --experimental-specifier-resolution=node ./dist/index.js",
"lint": "eslint .",
"prettier": "prettier --write \"src/**/*.ts\"",
"build-docs": "npx typedoc src/mongo-wrapper.ts"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Monirul1/mongo-db-wrapper.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Monirul1/mongo-db-wrapper/issues"
},
"homepage": "https://github.com/Monirul1/mongo-db-wrapper#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typedoc": "^0.23.28",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/mongodb": "^4.0.7",
"mongodb": "^5.0.1"
}
}