generated from imranbarbhuiya/package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.28 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": "root",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "TIMING=1 turbo run lint",
"format": "prettier --write --cache .",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"bump": "turbo run bump",
"check-update": "turbo run check-update",
"postinstall": "husky .github/husky"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@favware/cliff-jumper": "^5.0.0",
"@favware/npm-deprecate": "^2.0.0",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.8",
"cz-conventional-changelog": "^3.3.0",
"esbuild-plugin-version-injector": "^1.2.1",
"eslint": "^9.17.0",
"eslint-config-mahir": "^1.0.7",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"turbo": "^2.3.3",
"vitest": "^2.1.8"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"packageManager": "[email protected]"
}