-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"devDependencies": {
"@nnmax/eslint-config-basic": "workspace:*",
"@types/prettier": "^3.0.0",
"bumpp": "^9.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
},
"lint-staged": {
"*.{js,md,yml,yaml,json}": "prettier --write",
"*.{js,ts}": "eslint --fix"
},
"name": "@nnmax/eslint-config",
"packageManager": "[email protected]",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/nnmax/eslint-config.git"
},
"scripts": {
"bump": "bumpp -r",
"eslint": "eslint .",
"eslint:fix": "yarn eslint --fix",
"postinstall": "husky",
"prettier": "prettier --write .",
"prettier:ci": "prettier --check .",
"publish": "yarn workspaces foreach --verbose --all --no-private npm publish --access public --tolerate-republish",
"release": "yarn bump && yarn publish"
},
"version": "3.2.1",
"workspaces": [
"packages/*"
]
}