-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "mongo cdc",
"version": "0.0.1",
"description": "MongoDB CDC producer",
"type": "module",
"engines": {
"node": ">= 17.4.0 <19"
},
"devDependencies": {
"@types/jest": "~29.5",
"@types/node": "^18.17.3",
"@typescript-eslint/eslint-plugin": "~6.2",
"@typescript-eslint/parser": "~6.2",
"eslint": "~8.46",
"eslint-config-prettier": "~9.0",
"eslint-plugin-jest": "~27.2",
"jest": "~29.6",
"prettier": "~3.0",
"rimraf": "~5.0",
"ts-api-utils": "~1.0",
"ts-jest": "~29.1",
"typescript": "~5.1"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"start": "node build/src/main.js",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch"
},
"author": "MohammadMojtabaRoshani <[email protected]> ",
"license": "Apache-2.0",
"dependencies": {
"@fullstacksjs/toolbox": "^3.3.0",
"dotenv": "^16.3.1",
"lodash": "^4.17.21",
"mongodb": "^5.7.0",
"mqtt": "^5.0.2",
"tslib": "~2.6"
}
}