-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.14 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
{
"name": "@keegan-lillo/linters",
"author": "Keegan Lillo <[email protected]>",
"description": "A monorepo for all the linters I use",
"license": "MIT",
"repository": "keegan-lillo/linters",
"homepage": "https://github.com/keegan-lillo/linters",
"private": true,
"scripts": {
"lint": "prettier . --check",
"lint-workspace": "yarn workspaces foreach -p -v run lint ",
"no-modified": "scripts/no-modified.sh",
"release-alpha": "yarn no-modified && doctor && yarn lint-workspace && lerna publish --force-publish --dist-tag alpha",
"release": "yarn no-modified && doctor && yarn lint-workspace && lerna publish --force-publish",
"postinstall": "husky install",
"version": "yarn install && git add yarn.lock"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@yarnpkg/doctor": "3.0.0",
"eslint": "^7.32.0",
"husky": "^7.0.2",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0",
"stylelint": "^13.13.1"
},
"lint-staged": {
"packages/**/*.{js,jsx,ts,tsx}": "eslint",
"packages/**/*.{scss,css}": "stylelint",
"*": "prettier --check --ignore-unknown"
}
}