-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.09 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": "slackbot",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "ts-node index.js",
"build": "tsc",
"dev": "ts-node-dev --respawn index.js",
"debug": "ts-node-dev --inspect --no-notify --respawn --transpileOnly . index.js",
"lint": "eslint --ext .js,.ts --ignore-pattern '/build/' --fix ."
},
"engines": {
"node": "^10.0.0"
},
"repository": "git@github.com:TUS-OSK/slackbot.git",
"author": "OSK",
"license": "MIT",
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@slack/bolt": "^1.7.0",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/node": "^13.9.0",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^2.0.2",
"ts-node-dev": "^1.0.0-pre.44"
}
}