-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.1 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
{
"name": "slacktimebot",
"version": "2.0.0",
"description": "a flaming chickens slack bot for logging project hours",
"main": "src/index",
"type": "module",
"scripts": {
"start": "node ./dist/index.cjs",
"start:dev": "npm run build && node --enable-source-maps ./dist/index.cjs",
"build": "esbuild src/index.ts --bundle --outfile=./dist/index.cjs --platform=node --sourcemap --log-level=warning",
"deploy": "ssh $DEPLOY_HOST $DEPLOY_SCRIPT",
"lint": "eslint --ext .ts src",
"lint:report": "eslint --ext .ts --output-file eslint_report.json --format json src"
},
"author": "Micah Powch",
"repository": "https://github.com/flamingchickens1540/slack-time-bot",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"esbuild": "^0.15.5",
"eslint": "^8.23.0",
"typescript": "^4.8.2"
},
"dependencies": {
"jsonwebtoken": ">=9.0.0",
"@slack/bolt": "^3.13.3",
"@slack/web-api": "^6.9.0",
"cron": "^1.8.2",
"google-spreadsheet": "^3.3.0",
"node-fetch": "^3.2.10",
"tinyurl": "^1.1.7",
"uuid": "^9.0.0"
}
}