Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(slack): changes to work with the slack API #95

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/erbium
lts/iron
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM node:erbium
FROM node:erbium-bullseye

RUN apt-get update && apt-get install -y

Expand Down
3,920 changes: 2,940 additions & 980 deletions package-lock.json

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
{
"name": "heyburrito",
"name": "heytoggl",
"version": "1.0.0",
"repository": "github.com/chralp/heyburrito",
"repository": "github.com/toggl/heytoggl",
"scripts": {
"start": "NODE_ENV=production ts-node ./src/server.ts",
"dev": "NODE_ENV=development nodemon --ignore '/test/*.ts' --watch '*.ts' --exec 'ts-node' ./src/server.ts",
"mockDB": "ts-node ./test/lib/mockDatabase.ts",
"test": "NODE_ENV=testing mocha -r ts-node/register test/*-test.ts --exit",
"lint": "eslint --ext .ts ./src/ || exit 0",
"docker-build": "docker build -t chralp/heyburrito . && docker tag chralp/heyburrito chralp/heyburrito",
"docker-build": "docker build -t toggl/heytoggl . && docker tag toggl/heytoggl toggl/heytoggl",
"docker-push": "docker push chralp/heyburrito"
},
"license": "MIT",
"dependencies": {
"@slack/rtm-api": "^5.0.3",
"@slack/web-api": "^5.6.0",
"@slack/web-api": "^7.7.0",
"bog": "^1.0.2",
"dotenv": "^6.0.0",
"mongodb": "^3.4.0",
"ts-node": "^7.0.1",
"typescript": "^3.7.4",
"typescript": "^5.6.3",
"ws": "^7.4.6"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/dotenv": "^4.0.3",
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.9",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-plugin-import": "^2.19.1",
"eslint": "^9.13.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"mocha": "^5.2.0",
"mongodb-memory-server": "5.2.7",
"nodemon": "^2.0.2",
Expand Down
Loading