-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "thunder-bot",
"version": "1.0.0",
"description": "kosen 13s' slackbot",
"main": "index.js",
"repository": "https://github.com/kosen13s/thunder-bot.git",
"author": "kosen 13s'",
"license": "MIT",
"private": true,
"scripts": {
"postinstall": "yarn --cwd functions",
"lint": "eslint --ext .js,.ts --max-warnings 0 .",
"deploy": "firebase deploy"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --max-warnings 0",
"git add"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"firebase-tools": "^7.1.0",
"husky": "^3.0.1",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"typescript": "^3.5.3"
}
}