-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach -W --exclude . -p run build",
"test": "yarn workspaces foreach -W --exclude . -p run test",
"publish": "yarn build && yarn workspaces foreach -W --exclude . -p npm publish --access public",
"lint": "eslint . && textlint . && prettier --check .",
"fix": "eslint . --fix && textlint . --fix && prettier --write .",
"postinstall": "husky"
},
"packageManager": "yarn@4.6.0",
"devDependencies": {
"@a01sa01to/eslint-config": "workspace:*",
"@a01sa01to/preset-textlint": "workspace:*",
"@a01sa01to/prettier-config": "workspace:*",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.9",
"eslint": "^9.18.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.1",
"prettier": "^3.4.2",
"textlint": "^14.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,cjs,mjs,cts,mts}": [
"eslint --fix",
"prettier --write"
],
"*.{md,txt}": [
"textlint --fix",
"prettier --write"
],
"*.{json,css,scss,html,yaml}": [
"prettier --write"
]
}
}