-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.3 KB
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": "slackfit",
"version": "1.0.0",
"description": "Slack app prototype for gamified workout check-ins",
"main": "app.js",
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"dev": "nodemon --exec ts-node src/app.ts",
"test": "npm run build && node dist/test.js",
"post-thread": "ts-node scripts/postThread.ts",
"lint": "eslint ./src --ext .ts",
"format": "prettier --write ./src"
},
"dependencies": {
"@slack/bolt": "^3.15.0",
"dotenv": "^16.3.1",
"lowdb": "^6.0.1",
"node-cron": "^3.0.2"
},
"devDependencies": {
"@types/node": "^22.15.5",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^10.1.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"ts-node": "^10.9.2",
"typescript": "5.3"
},
"oauth_config": {
"scopes": {
"bot": [
"app_mentions:read",
"chat:write",
"chat:write.public",
"channels:history",
"channels:read",
"groups:read",
"groups:history",
"im:read",
"im:history",
"im:write",
"reactions:read",
"users:read",
"users:read.email",
"commands"
]
}
}
}