-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.75 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.75 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "workshop-mongo",
"version": "1.0.0",
"description": "Taller del uso de mongo desde nodeJS",
"main": "./app/build/server/index.js",
"scripts": {
"build": "babel ./app/src/ -d ./app/build/",
"dev": "nodemon ./run_app.js",
"start": "npm run build; node ./"
},
"repository": {
"type": "git",
"url": "git@GitHub:OrcaPracticas/workshop-mongo.git"
},
"keywords": [
"Mongo",
"NodeJs",
"JavaScript",
"Mongoose",
"noSql"
],
"author": "Jorge Mendez Ortega <jorge.mendez.ortega@gmail.com>",
"license": "MIT",
"dependencies": {
"body-parser": "1.19.0",
"cli-color": "2.0.0",
"compression": "1.7.4",
"cors": "2.8.5",
"express": "4.17.1",
"helmet": "3.23.1",
"mongoose": "5.9.19"
},
"devDependencies": {
"@babel/cli": "7.10.3",
"@babel/core": "7.10.3",
"@babel/node": "7.10.3",
"@babel/plugin-proposal-class-properties": "7.10.1",
"@babel/plugin-proposal-private-methods": "7.10.1",
"@babel/preset-env": "7.10.3",
"@babel/register": "7.10.3",
"babel-eslint": "11.0.0-beta.2",
"babel-plugin-inline-json-import": "0.3.2",
"babel-plugin-module-resolver": "4.0.0",
"babel-plugin-transform-define": "2.0.0",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-import-resolver-babel-module": "5.1.2",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-module-resolver": "0.16.0",
"eslint-plugin-prettier": "3.1.4",
"nodemon": "2.0.4",
"prettier": "2.0.5"
}
}