-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "schema_monitor",
"repository": {
"type": "git",
"url": "https://github.com/friedrice123/MongoDB-Schema-Monitoring-Tool.git"
},
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"dev": "ts-node-dev --poll src/index.ts",
"build": "concurrently \"rimraf ./dist\" \"tsc\"",
"start": "npm run build",
"serve": "concurrently \"npx tsc -w\" \"nodemon dist/index.js\""
},
"keywords": [],
"author": "Saugat Kannojia",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.21",
"@types/mongodb": "^4.0.7",
"@types/node": "^20.12.12",
"archiver": "^7.0.1",
"body-parser": "^1.20.2",
"csv-parser": "^3.0.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"json-to-ts": "^2.1.0",
"mongodb": "^6.6.2",
"papaparse": "^5.4.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/archiver": "^6.0.2",
"@types/papaparse": "^5.3.14",
"@types/uuid": "^9.0.8",
"rimraf": "^5.0.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5",
"nodemon": "^3.1.1",
"concurrently": "^8.2.2"
}
}