-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 KB
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
{
"name": "deepint-external-source-mongo",
"version": "1.0.0",
"description": "Mongo DB external source for Deep Intelligence",
"main": "dist/index.js",
"scripts": {
"watch": "npm run watch:ts",
"watch:ts": "npm run build:ts -- --watch --diagnostics",
"prebuild": "npm run lint",
"compile": "tsc --pretty",
"build": "rimraf dist && tsc --pretty",
"lint": "eslint --fix src/**/*.ts",
"start": "node dist/index.js"
},
"engines": {
"node": ">= 20.0.0"
},
"author": "",
"license": "ISC",
"private": true,
"devDependencies": {
"@types/express": "4.17.21",
"@types/node": "20.11.18",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"eslint": "8.56.0",
"rimraf": "5.0.5",
"typescript": "5.3.3"
},
"dependencies": {
"@asanrom/async-tools": "1.1.1",
"@asanrom/express-swagger-generator": "2.1.4",
"cookie-parser": "1.4.6",
"dotenv": "16.4.4",
"express": "4.18.2",
"express-async-errors": "3.1.1",
"form-data": "4.0.0",
"mongodb": "6.3.0"
}
}