-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 956 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
{
"name": "fb-post-clima",
"version": "1.0.0",
"description": "Una API básica para postear el clima en Facebook",
"main": "./src/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node build/index.js",
"dev": "nodemon src/index.js --exec babel-node",
"build": "babel src --out-dir build --copy-files"
},
"keywords": [],
"author": "Jesús Hernaández",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"fs": "^0.0.1-security",
"mongoose": "^6.4.4",
"morgan": "^1.10.0",
"path": "^0.12.7",
"pug": "^3.0.2",
"puppeteer": "^15.3.2",
"puppeteer-core": "^15.3.2"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/node": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"nodemon": "^2.0.19"
}
}