-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.21 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
40
41
42
{
"name": "integrador_educacionit",
"version": "1.0.0",
"description": "Proyecto integrador del Bootcamp Software Engineer en EducacionIT",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"./**/*.js\"",
"format:check": "prettier --check \"./**/*.{js,jsx}\"",
"sass": "sass ./sass/main.scss ./public/css/main.css",
"sass:watch": "sass --watch ./sass/main.scss ./public/css/main.css",
"debug": "node --inspect app.js",
"start": "node app.js",
"start:watch": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cmoros/Integrador_EducacionIT.git"
},
"keywords": [],
"author": "César Moros <rdcesar442@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Cmoros/Integrador_EducacionIT/issues"
},
"homepage": "https://cmoros.github.io/Integrador_EducacionIT/",
"type": "module",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"express-handlebars": "^6.0.6",
"mongoose": "^6.6.5",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"prettier": "^2.7.1"
},
"engines": {
"node": "16.1"
}
}