forked from livecycle/preevy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 822 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
{
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"husky": "^8.0.0",
"lerna": "^6.6.2",
"lint-staged": "^13.1.2",
"lodash": "^4.17.21",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"syncpack": "^9.8.4",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix"
]
},
"scripts": {
"test": "yarn -s run lerna -- run test --",
"lint": "yarn -s run lerna -- run lint --parallel --",
"build": "yarn -s run lerna run build --",
"clean": "yarn -s run lerna -- run clean --parallel --",
"check-mismatches": "syncpack list-mismatches",
"fix-mismatches": "syncpack fix-mismatches",
"prepare": "husky install",
"postinstall": "patch-package"
},
"version": "0.0.33"
}