-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.46 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.46 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
41
42
43
44
45
46
{
"name": "api-matrix-service",
"version": "1.0.0",
"description": "Core service for the Compatibility Matrix. Provides REST endpoints for dependency health data to all clients.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"genkey": "node -e \"console.log(require('crypto').randomBytes(32).toString('hex'))\"",
"test": "npm run calc && npm run conflict && npm run email && npm run ip && npm run ranges && npm run webhook",
"calc": "node test/calc.test.js",
"conflict": "node test/conflict.test.js",
"email": "node test/email.test.js",
"ip": "node test/ip.test.js",
"ranges": "node test/ranges.test.js",
"webhook": "node test/webhook.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ambastha-Org/Universal-Dev-Registry-DB.git"
},
"keywords": [],
"author": "Sudhanshu Ambastha",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Ambastha-Org/Universal-Dev-Registry-DB/issues"
},
"homepage": "https://github.com/Ambastha-Org/Universal-Dev-Registry-DB#readme",
"dependencies": {
"axios": "^1.13.2",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"mongoose": "^9.0.1",
"node-cron": "^4.2.1",
"nodemailer": "^6.10.0",
"pdfkit": "^0.17.2",
"semver": "^7.7.3"
},
"devDependencies": {
"nodemon": "^3.1.11",
"xml2js": "^0.6.2"
}
}