forked from thomasverleye/craftzing-slack-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "@craftzing/slack-bot",
"version": "1.6.2",
"private": true,
"scripts": {
"build": "rm -rf ./dist && tsc",
"patch": "npm version patch -m 'chore: v%s'",
"minor": "npm version minor -m 'chore: v%s'",
"major": "npm version major -m 'chore: v%s'",
"dev": "nodemon",
"lint": "eslint --ext '.ts,.js' src",
"lint:ts": "tsc --noEmit",
"lint:fix": "eslint --ext '.ts,.js' --fix src",
"test": "jest --coverage"
},
"dependencies": {
"@slack/bolt": "^3.12.2",
"@slack/web-api": "^6.7.2",
"axios": "^1.1.3",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"form-data": "^4.0.0",
"ms": "^2.1.3",
"radash": "^9.5.0",
"tsconfig-paths": "^4.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/jest": "^29.2.3",
"@types/ms": "^0.7.31",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jest": "^29.3.1",
"lefthook": "^1.2.3",
"nodemon": "^2.0.20",
"prettier": "^2.8.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}