-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1015 Bytes
/
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
43
44
45
{
"name": "indicadores_api",
"version": "1.0.0",
"description": "API para obtener Indicadores Económicos de Chile",
"main": "index.js",
"scripts": {
"heroku-prebuild": "node create-env.js",
"build": "node create-env.js",
"start:dev": "nodemon index.js",
"start": "node index.js",
"test": "npx jest --detectOpenHandles --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsanbae/indicadores_api.git"
},
"keywords": [
"api",
"indicadores",
"uf",
"utm",
"ivp"
],
"author": "Javier Sánchez",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsdom": "^16.4.0",
"morgan": "^1.10.0",
"node-fetch": "^2.6.7",
"node-fetch-cache": "^2.0.3",
"winston": "^3.8.1"
},
"devDependencies": {
"jest": "^28.1.3",
"supertest": "^6.2.4"
},
"engines": {
"node": "16.x"
}
}