-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 876 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 876 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
33
34
35
36
37
38
{
"name": "mygit",
"version": "1.2.0",
"description": "Lekki system wersjonowania oparty na snapshotach (zip). Express + CLI + panel web + funkcja get",
"main": "server.mjs",
"type": "module",
"bin": {
"mygit": "./cli/index.js"
},
"scripts": {
"start": "node server.mjs",
"dev": "NODE_ENV=development node server.mjs"
},
"dependencies": {
"adm-zip": "^0.5.16",
"archiver": "^5.3.1",
"better-sqlite3": "^9.4.3",
"commander": "^14.0.2",
"cors": "^2.8.5",
"dayjs": "^1.11.19",
"express": "^4.18.2",
"fs-extra": "^11.3.2",
"glob": "^10.3.3",
"ignore": "^7.0.5",
"inquirer": "^9.2.7",
"mime": "^3.0.0",
"pino": "^8.20.0",
"rimraf": "^5.0.0",
"serve-static": "^1.15.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"nodemon": "^2.0.22"
},
"engines": {
"node": ">=18"
}
}