forked from OrakovTim/slack-activity-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 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
{
"name": "express-bot-slack",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"start:dev": "npm run build && NODE_ENV=development node dist/app.js",
"start:prod": "npm run build && NODE_ENV=production node dist/app.js",
"dev": "nodemon --watch src --ext ts --exec \"ts-node src/app.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts,.js --ignore-pattern '!.eslintrc.js'",
"prepare": "husky"
},
"dependencies": {
"@slack/bolt": "^3.22.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"uuid": "^10.0.0",
"winston": "^3.15.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/express": "^5.0.0",
"@types/node": "^22.7.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix"
]
},
"private": true
}