-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.19 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.19 KB
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
{
"$schema": "https://json.schemastore.org/package",
"name": "ts-mono-template-monorepo",
"version": "0.0.0",
"description": "A flexible TypeScript monorepo template.",
"private": true,
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "pnpm -r build",
"build:dev": "pnpm -r build:dev",
"type-check": "pnpm -r type-check",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"format": "pnpm -r format && prettier --write \".github/**/*.{yml,yaml,json,md}\" \"*.{json,md,yml,yaml}\"",
"format:check": "pnpm -r format:check && prettier --check \".github/**/*.{yml,yaml,json,md}\" \"*.{json,md,yml,yaml}\"",
"prepare": "husky"
},
"packageManager": "[email protected]",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"typescript-eslint": "^8.52.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0"
}
}