-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1021 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1021 Bytes
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
{
"name": "@repo/package-template",
"version": "0.0.0",
"private": true,
"description": "TypeScript monorepo template with vitest, turbo, husky, and changesets",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"test": "turbo test",
"test:coverage": "turbo test:coverage",
"clean": "turbo clean",
"prepare": "husky install",
"release": "changesets version && pnpm install --no-frozen-lockfile && git add .",
"publish": "turbo build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"husky": "^9.0.0",
"prettier": "^3.0.0",
"turbo": "^2.0.0",
"typescript-eslint": "^8.0.0"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20"
},
"changesets": {
"baseBranch": "main",
"changelog": false,
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted"
}
}