-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "adafruit-pi-stock-bot",
"version": "2.0.0",
"description": "A simple Discord and Slack bot that that checks the stock status of selected Raspberry Pi models on Adafruit and sends a message to a Discord and/or Slack channel when one comes in stock.",
"main": "adafruit.js",
"type": "module",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --no-warnings adafruit.js",
"docker-build": "docker build -t ultimate360/adafruit-pi-stock-bot . && echo Docker Image Built!",
"docker-deploy": "docker push ultimate360/adafruit-pi-stock-bot:latest",
"docker-run": "docker run -d -v adafruit-pi-bot:/usr/src/app/config:rw -d ultimate360/adafruit-pi-stock-bot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EthyMoney/Adafruit-Pi-Stock-Bot.git"
},
"engines": {
"node": ">=20.9.0",
"npm": ">=10.1.0"
},
"keywords": [
"bot",
"discord",
"adafruit",
"stock-checker",
"stock-tracker",
"raspberry-pi",
"pi4",
"pi5",
"notifications"
],
"author": "Logan S. (EthyMoney)",
"license": "MIT",
"bugs": {
"url": "https://github.com/EthyMoney/Adafruit-Pi-Stock-Bot/issues"
},
"homepage": "https://github.com/EthyMoney/Adafruit-Pi-Stock-Bot#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"eslint": "^9.8.0",
"globals": "^15.8.0",
"pm2": "^5.4.2"
},
"dependencies": {
"axios": "^1.7.2",
"chalk": "^5.3.0",
"discord.js": "^14.15.3",
"jsdom": "^24.1.1"
}
}