-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.41 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.41 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
{
"author": "Jorge Méndez Ortega <jorge.mendez.ortega@gmail.com>",
"dependencies": {
"cli-color": "^2.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.22.0",
"mongoose": "^5.9.9"
},
"description": "Creando una api de lo primeros 150 pokemons, se integrara con heroku",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"babel-plugin-inline-json-import": "^0.3.2",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-define": "^2.0.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^7.1.1",
"nodemon": "^2.0.3",
"nyc": "^15.0.1"
},
"keywords": [
"expressjs",
"api",
"pokemons"
],
"license": "MIT",
"main": "./app/build/Server.js",
"name": "api-pokemon",
"private": false,
"repository": {
"type": "git",
"url": "git@GitHub:OrcaPracticas/api-pokemon.git"
},
"scripts": {
"build": "babel ./app/src/ -d ./app/build/",
"dev": "export NODE_ENV=develop; nodemon ./run_server.js",
"start": "npm run build; node ./app/build/Server.js",
"test:app": "mocha",
"test:coverage": "nyc --reporter=html mocha"
},
"version": "1.6.1"
}