-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 1.01 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc --build",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint --max-warnings 0 --cache --cache-location node_modules/.cache/eslint/eslint.cache",
"postinstall": "run build",
"verify": "echo '[format]' && run format && echo '[build]' && run build && echo '[lint]' && run lint",
"versions": "echo '[node]' && node --version && echo '\n[yarn]' && yarn --version && echo '\n[prettier]' && prettier --version && echo '\n[eslint]' && eslint --version && echo '\n[tsc]' && tsc --version && echo '\n[browserslist]' && browserslist --version"
},
"packageManager": "[email protected]",
"resolutions": {
"@typescript-eslint/utils": "^8.13.0"
},
"devDependencies": {
"@pandell/eslint-config": "workspace:packages/eslint-config",
"browserslist": "^4.24.2",
"eslint": "^9.14.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"prettier": "@pandell/prettier-config"
}