-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 954 Bytes
/
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": "@kilohealth/eslint-config",
"private": true,
"keywords": [
"react-native",
"eslint",
"eslintconfig",
"prettier",
"react",
"next",
"node",
"redux-saga"
],
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"sort-all-package-json": "yarn sort-package-json \"package.json\" \"packages/*/package.json\"",
"version": "yarn install && git stage yarn.lock"
},
"lint-staged": {
"package.json": [
"sort-package-json"
],
"*.{js,json,md,yml}": [
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"eslint": "^8.55.0",
"husky": "^8.0.3",
"lerna": "^8.0.1",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"redux-saga": "^1.2.3",
"sort-package-json": "^2.6.0"
},
"packageManager": "[email protected]"
}