Create package.json
Browse files- package.json +32 -0
package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "grow-garden-stock-bot",
|
| 3 |
+
"version": "1.0.0",
|
| 4 |
+
"description": "Facebook Messenger bot for stock notifications",
|
| 5 |
+
"main": "index.js",
|
| 6 |
+
"scripts": {
|
| 7 |
+
"start": "node index.js",
|
| 8 |
+
"dev": "nodemon index.js",
|
| 9 |
+
"test": "echo \"Error: no test specified\" && exit 1"
|
| 10 |
+
},
|
| 11 |
+
"dependencies": {
|
| 12 |
+
"axios": "^1.6.7",
|
| 13 |
+
"body-parser": "^1.20.2",
|
| 14 |
+
"express": "^4.18.2",
|
| 15 |
+
"node-cron": "^3.0.2"
|
| 16 |
+
},
|
| 17 |
+
"devDependencies": {
|
| 18 |
+
"nodemon": "^3.0.2"
|
| 19 |
+
},
|
| 20 |
+
"engines": {
|
| 21 |
+
"node": ">=18.0.0"
|
| 22 |
+
},
|
| 23 |
+
"keywords": [
|
| 24 |
+
"facebook",
|
| 25 |
+
"messenger",
|
| 26 |
+
"bot",
|
| 27 |
+
"stock",
|
| 28 |
+
"notifications"
|
| 29 |
+
],
|
| 30 |
+
"author": "Jonell Hutchin Magallanes ",
|
| 31 |
+
"license": "MIT"
|
| 32 |
+
}
|