-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "pokedex-api",
"version": "1.0.0",
"description": "Pokedex API",
"main": "app.js",
"scripts": {
"dev": "./node_modules/.bin/cross-env NODE_ENV=development ./node_modules/.bin/nodemon app.js",
"start": "./node_modules/.bin/cross-env NODE_ENV=production node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabriel-barreto/pokedex-api.git"
},
"keywords": [
"pokedex",
"api",
"fatec",
"itapetininga"
],
"author": "Gabriel Barreto <barreto-gabriel@outlook.com> (https://gabriel-barreto.tech/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabriel-barreto/pokedex-api/issues"
},
"homepage": "https://github.com/gabriel-barreto/pokedex-api#readme",
"dependencies": {
"body-parser": "^1.18.3",
"cross-env": "^5.2.0",
"express": "^4.16.3",
"morgan": "^1.9.0"
},
"devDependencies": {
"nodemon": "^1.17.5"
},
"engines": {
"npm": "~6.4.0",
"node": "~10.7.0"
}
}