forked from jpedroschmitz/rocketdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.37 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
44
45
46
47
48
49
50
51
52
53
{
"name": "root",
"private": true,
"scripts": {
"lint": "eslint --ignore-path .gitignore \"**/*.+(ts|js|tsx|jsx)\"",
"format": "prettier --ignore-path .gitignore \"**/*.+(ts|js|tsx|jsx)\" --write",
"postinstall": "husky install",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"commit": "cz"
},
"engines": {
"node": ">=14.15.0"
},
"workspaces": [
"@rocketseat/*",
"examples/*"
],
"lint-staged": {
"**/*.{ts,js,jsx,tsx}": [
"yarn lint --fix",
"yarn format"
],
"*.{md,mdx,json,yaml}": [
"prettier \"**/*.{md,mdx,json,yaml}\" --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.0",
"@changesets/cli": "^2.14.1",
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.13.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.4.0",
"husky": "7.0.4",
"lint-staged": "12.3.7",
"prettier": "2.6.2"
}
}