-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "restoreme",
"version": "1.0.0",
"description": "A database backup utility that can backup and restore any DB",
"main": "index.js",
"scripts": {
"dev": "tsc && nodemon dist/index.js",
"test": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RyanKaleliGabriel/RestoreMe.git"
},
"author": "Ryan Kaleli Gabriel",
"license": "ISC",
"bugs": {
"url": "https://github.com/RyanKaleliGabriel/RestoreMe/issues"
},
"homepage": "https://github.com/RyanKaleliGabriel/RestoreMe#readme",
"dependencies": {
"@inquirer/prompts": "^7.1.0",
"@slack/web-api": "^7.7.0",
"commander": "^12.1.0",
"dotenv": "^16.4.6",
"express": "^4.21.1",
"express-prom-bundle": "^8.0.0",
"mongodb": "^6.10.0",
"mysql2": "^3.11.4",
"nodemon": "^3.1.7",
"pg": "^8.13.1",
"prom-client": "^15.1.3",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.9.1",
"@types/pg": "^8.11.10"
}
}