generated from imranbarbhuiya/package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 1.96 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "root-tagscript",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo run build",
"bump": "turbo run bump --concurrency=1",
"check-update": "turbo run check-update",
"clean": "node scripts/clean.mjs",
"clean:full": "node scripts/clean-full.mjs",
"docs": "node scripts/generateDocs.mjs",
"format": "prettier --cache --write .",
"lint": "turbo run lint",
"update": "yarn upgrade-interactive",
"postinstall": "husky install .github/husky",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@favware/cliff-jumper": "^5.0.0",
"@favware/colorette-spinner": "^1.0.1",
"@favware/npm-deprecate": "^2.0.0",
"@types/node": "^22.9.0",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^2.1.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.15.0",
"eslint-config-mahir": "^1.0.5",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prompts": "^2.4.2",
"tsup": "^8.3.5",
"turbo": "^2.3.0",
"typedoc": "^0.26.11",
"typedoc-plugin-external-link": "^2.1.2",
"typedoc-plugin-markdown": "4.2.10",
"typedoc-plugin-mdn-links": "^3.3.8",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imranbarbhuiya/tagscript.git"
},
"engines": {
"node": ">=v14.0.0",
"npm": ">=7.0.0"
},
"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",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
},
"packageManager": "[email protected]",
"nextBundleAnalysis": {}
}