Skip to content

Commit 8c1a7fd

Browse files
authored
Merge pull request #8 from OrcaPracticas/add/init
📦 Instalación de dependencias
2 parents 2a6bfe8 + 553f53e commit 8c1a7fd

3 files changed

Lines changed: 84 additions & 0 deletions

File tree

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## Directorios
2+
node_modules
3+
coverage
4+
.nyc*
5+
.http
6+
7+
### sistema
8+
.vscode
9+
.DS_Store
10+
11+
## Archivos
12+
package-*
13+
*.lock
14+
yarn*

LICENCE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 OrcaPracticas/workshop-mongo
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

package.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"name": "workshop-mongo",
3+
"version": "1.0.0",
4+
"description": "Taller del uso de mongo desde nodeJS",
5+
"main": "./run_app.js",
6+
"scripts": {
7+
"dev": "nodemon ./"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git@GitHub:OrcaPracticas/workshop-mongo.git"
12+
},
13+
"keywords": [
14+
"Mongo",
15+
"NodeJs",
16+
"JavaScript",
17+
"Mongoose",
18+
"noSql"
19+
],
20+
"author": "Jorge Mendez Ortega <jorge.mendez.ortega@gmail.com>",
21+
"license": "MIT",
22+
"dependencies": {
23+
"cli-color": "2.0.0",
24+
"compression": "1.7.4",
25+
"cors": "2.8.5",
26+
"express": "4.17.1",
27+
"helmet": "3.23.1",
28+
"mongoose": "5.9.19"
29+
},
30+
"devDependencies": {
31+
"@babel/cli": "7.10.3",
32+
"@babel/core": "7.10.3",
33+
"@babel/node": "7.10.3",
34+
"babel-eslint": "10.1.0",
35+
"@babel/preset-env": "7.10.3",
36+
"@babel/register": "7.10.3",
37+
"babel-plugin-inline-json-import": "0.3.2",
38+
"babel-plugin-module-resolver": "4.0.0",
39+
"babel-plugin-transform-define": "2.0.0",
40+
"eslint": "7.2.0",
41+
"eslint-config-airbnb": "18.1.0",
42+
"eslint-config-prettier": "6.11.0",
43+
"eslint-plugin-import": "2.21.2",
44+
"eslint-plugin-jsx-a11y": "6.2.3",
45+
"eslint-plugin-prettier": "3.1.4",
46+
"prettier": "2.0.5",
47+
"nodemon": "2.0.4"
48+
}
49+
}

0 commit comments

Comments
 (0)