-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 819 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 819 Bytes
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
{
"name": "anylint",
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint . --ext .js,.cjs,.mjs,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.cjs,.mjs,.jsx,.ts,.tsx --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"fix": "bun run lint:fix && bun run format:fix",
"commit": "bun run fix && git add . && commit",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@release-it/conventional-changelog": "7.0.2",
"bun-types": "latest",
"conventional-changelog-conventionalcommits": "7.0.2",
"eslint": "8.50.0",
"eslint-plugin-n": "16.1.0",
"husky": "8.0.3",
"prettier": "3.0.3",
"release-it": "16.2.0",
"typescript": "5.2.2"
},
"prettier": "@anylint/prettier-config"
}