-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 838 Bytes
/
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
{
"private": true,
"version": "0.1.0",
"type": "module",
"engines": {
"node": ">=16.0.0",
"pnpm": ">=7.5.0"
},
"scripts": {
"bump-version": "node ./tools/bump-version.js",
"lint": "eslint --ext .ts --ext .tsx packages/*/src",
"fmtc": "prettier --check 'packages/*/src/**/*.{ts,tsx}'",
"postinstall": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.26.1",
"globby": "^13.1.2",
"husky": "^8.0.1",
"prettier": "^2.4.1",
"rimraf": "~3.0.2",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint",
"prettier --check",
"sh tools/typecheck-staged.sh"
]
}
}