-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 896 Bytes
/
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
{
"name": "slack-2ch",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Keisuke Sato <riaf@me.com>",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"build": "tsc"
},
"engines": {
"node": "12.x"
},
"dependencies": {
"2ch-trip": "^1.0.1",
"@keyv/redis": "^2.1.2",
"@slack/bolt": "^2.3.0",
"keyv": "^4.0.1"
},
"devDependencies": {
"@types/keyv": "^3.1.1",
"@types/node": "^14.6.4",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "2.1.1",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}