-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.54 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
{
"name": "ud.proyectodegrado.gitcol-learning",
"version": "1.0.0",
"description": "A web platform for learning and practicing the basics of Git. It includes a collaborative mode that allows users to participate in challenges and work together to improve their version control skills.",
"repository": {
"type": "git",
"url": "https://github.com/J4F3ET/UD.ProyectoDeGrado.GitCol-Learning"
},
"main": "server.js",
"scripts": {
"clean": "rm -rf dist",
"dev": "nodemon --exec babel-node src/server.js",
"start": "babel-node src/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "jsdoc -c ./docs/jsdoc.json",
"build-windows": "rmdir /S /Q build && npm ci && npx babel src --out-dir build --copy-files && npx babel-node build/server.js",
"build": "rm -rf build && npm ci && npx babel src --out-dir build --copy-files"
},
"author": "Danna He <dhsepulvedas@udistrital.edu.co>(https://github.com/Chocolatamargo2607), Jafet Stiven <jslopezz@udistrital.edu.co> (https://github.com/J4F3ET)",
"license": "MIT",
"type": "module",
"dependencies": {
"ejs": "^3.1.9",
"express": "^4.18.2",
"firebase-admin": "^12.0.0",
"morgan": "^1.10.0",
"socket.io": "^4.7.4",
"ud.proyectodegrado.gitcol-learning": "file:"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.8",
"clean-jsdoc-theme": "^4.2.18",
"jsdoc": "^4.0.4",
"nodemon": "^3.1.9",
"swagger-jsdoc": "^6.2.8",
"swagger-themes": "^1.4.3",
"swagger-ui-express": "^5.0.1"
}
}