-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 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
38
39
40
41
42
{
"name": "tasktrove",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:changed": "turbo run test:changed",
"test:file": "turbo run test:file",
"test:coverage": "turbo run test:coverage",
"check": "turbo run check --output-logs errors-only && echo 'All checks passed!'",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"docker:build": "docker build -t tasktrove .",
"changeset": "changeset",
"changeset:version": "changeset version",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "catalog:",
"@changesets/get-github-info": "catalog:",
"husky": "catalog:",
"lint-staged": "catalog:",
"prettier": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:"
},
"packageManager": "pnpm@10.18.1",
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
}
}