-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 813 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 813 Bytes
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
{
"name": "backend",
"version": "1.0.0",
"description": "CommitHub – A lightweight personal version control system for managing commits, branches, and merges with a local and collaborative workflow. Designed to teach and demonstrate Git-like functionality in a clean, developer-friendly CLI.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"No tests yet\" && exit 0"
},
"keywords": [
"version-control",
"git",
"commit",
"branch",
"merge",
"repository",
"vcs",
"cli"
],
"overrides": {
"fast-xml-parser": "^5.5.5"
},
"author": "Sanjeev Kr",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.1011.0",
"dotenv": "^17.3.1",
"mongoose": "^9.3.1",
"uuid": "^13.0.0",
"yargs": "^18.0.0"
}
}