-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"name": "discord-bot",
"version": "1.0.0",
"license": "MPL-2.0",
"description": "Um bot de utilidades para servidores no Discord",
"private": true,
"scripts": {
"lint": "lint-staged",
"start": "npm-run-all -p start:api start:bot",
"start-all": "npm-run-all -p start:*",
"start:api": "yarn workspace @discord-bot/api start",
"start:bot": "yarn workspace @discord-bot/bot start"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-promise": "^4.2.1",
"husky": ">=4"
},
"lint-staged": {
"*.((j|t)s(x|)|json|md(x|)|y(a|)ml)": [
"prettier -w"
],
"*.(j|t)s(x|)": [
"eslint --fix"
]
}
}