-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
37 lines (37 loc) · 1.15 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
{
"name": "vscode-textlint-parent",
"private": true,
"workspaces": [
"packages/textlint",
"packages/textlint-server"
],
"scripts": {
"clean": "npm run clean --ws",
"compile": "npm run compile --ws",
"webpack": "npm run webpack -w vscode-textlint",
"test": "npm run test --ws --if-present",
"lint": "npm exec --ws -- eslint --config .eslintrc.json src/**.ts",
"fix": "run-s fix:prettier fix:eslint",
"fix:eslint": "npm exec --ws -- eslint . --ext .ts --fix",
"fix:prettier": "npm exec --ws -- prettier --write . --config ../../package.json --ignore-path ../../.gitignore",
"sort": "npm exec --include-workspace-root --ws -- sort-package-json",
"version": "npm version --ws ",
"upgrade": "npm exec --ws -- ncu -u"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"npm-check-updates": "^11.8.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"sort-package-json": "^1.52.0"
},
"engines": {
"node": ">=16.0.0"
},
"prettier": {
"printWidth": 120
}
}