-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "word-count-tool",
"version": "1.0.0",
"description": "Word Count Tool",
"main": "./build/index.js",
"author": "David Lane",
"license": "UNLICENSED",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"lint": "yarn workspaces foreach -A run lint",
"prettify": "yarn workspaces foreach -A run prettify",
"build": "yarn lint && yarn workspaces foreach -At run build",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"pre-commit": "yarn prettify && yarn lint"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/eslint": "^8",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"pinst": "^3.0.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"lint-staged": {
"*.{ts}": [
"eslint --quiet --fix",
"prettier --write --ignore-unknown"
]
}
}