-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.49 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
{
"name": "@chatbot/chatbot",
"private": true,
"description": "A module for creating chat bots with presets for Discord, StackExchange, and Slack.",
"version": "2.1.0",
"workspaces": [
"packages/bot",
"packages/plugins",
"packages/scripts",
"packages/platforms/*"
],
"husky": {
"hooks": {
"pre-commit": "yarn run build"
}
},
"scripts": {
"lint": "eslint packages --ext '.ts,.tsx' ",
"lint:fix": "eslint packages --fix --ext '.ts,.tsx'",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write --check .",
"fix": "yarn run prettier:fix && yarn run lint:fix && yarn run prettier:fix",
"dev": "lerna run dev --parallel --scope @chatbot/plugins --scope @chatbot/bot",
"dev:so": "lerna run dev --stream --scope @chatbot/so",
"dev:discord": "lerna run dev --stream --scope @chatbot/discord",
"start:so": "lerna run start --stream --scope @chatbot/so",
"build": "lerna run build --stream"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"@userscripters/stackexchange-api-types": "^3.4.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.8",
"lerna": "^3.22.1",
"prettier": "^2.2.1"
}
}