forked from codemod-js/codemod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "codemod",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@types/**"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"lint-staged": {
"*.md": [
"prettier --write"
],
"*.ts": [
"eslint --fix"
],
"package.json": [
"sort-package-json"
]
},
"resolutions": {
"@babel/parser": "7.20.15"
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"esbuild": "^0.13.13",
"esbuild-runner": "^2.2.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
"jest": "^27.3.1",
"lerna": "^4.0.0",
"lint-staged": "^13.1.2",
"prettier": "^2.4.1",
"sort-package-json": "^1.53.1",
"typescript": "^4.4.4"
},
"scripts": {
"prepare": "husky install"
}
}