-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "data_collector",
"version": "0.6",
"description": "This web application is designed to collect data for LLM training, it's periodically collects data from third party data sources and provides an API to manipulate and access them.",
"main": "index.js",
"scripts": {
"test": "jest --runInBand --coverage --verbose",
"find-circular-deps": "madge . -c"
},
"author": "Sameera Kaluwaduge (https://kaluwaduge.com)",
"license": "ISC",
"dependencies": {
"axios": "^1.7.3",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.1.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"language-tags": "^1.0.9",
"locale-codes": "^1.3.1",
"locale-util": "^4.2.1",
"mongodb": "^6.5.0",
"mongoose": "^8.3.1",
"morgan": "^1.10.0",
"node-schedule": "^2.1.1",
"validator": "^13.12.0",
"winston": "^3.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/samdsk/DataCollector.git"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@shelf/jest-mongodb": "^4.2.0",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"madge": "^7.0.0",
"mongodb-memory-server": "^9.2.0",
"nodemon": "^3.1.4"
},
"keywords": [
"node",
"express",
"data collector",
"express",
"mongodb"
]
}