-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.25 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "slack-in-your-time",
"version": "0.0.1",
"description": "A Slack application for a global team",
"author": "Hoon Kim",
"repository": "https://github.com/TeamSTEP/slack-in-your-time.git",
"homepage": "https://github.com/TeamSTEP/slack-in-your-time",
"bugs": "https://github.com/TeamSTEP/slack-in-your-time/issues",
"main": "dist/index.js",
"scripts": {
"test": "NODE_ENV=test jest --verbose --coverage",
"lint:check": "eslint '*/**/*.{js,ts}'",
"start": "node dist/index.js",
"build": "tsc --project tsconfig.json",
"clean": "rimraf dist",
"dev": "NODE_ENV=development ts-node-dev -r dotenv/config src/index.ts",
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix",
"deploy": "yarn run clean && yarn run build && ts-node-dev -r dotenv/config ci/deploy.ts",
"sandbox": "ts-node-dev -r dotenv/config ci/sandbox.ts"
},
"keywords": [
"slack-app",
"bolt",
"remote-working",
"time-zone"
],
"license": "MIT",
"devDependencies": {
"@firebase/app-types": "^0.9.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"dotenv": "^16.4.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"glitch-deploy-tool": "^0.1.9-alpha",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"jsesc": "^3.0.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@slack/bolt": "^3.17.1",
"@slack/web-api": "^6.11.2",
"axios": "^1.6.7",
"chrono-node": "^2.7.5",
"express": "^4.18.2",
"firebase-admin": "^12.0.0",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.45",
"reflect-metadata": "^0.2.1"
},
"engines": {
"node": ">=20.x"
},
"private": true
}