-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "focus-tracker",
"private": true,
"description": "",
"keywords": [],
"license": "MIT",
"author": "",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"add-changeset": "changeset add",
"build": "turbo build",
"check-updates": "npm-check-updates -i --format group --deep",
"dev": "turbo dev",
"format": "prettier --write . --ignore-unknown && manypkg fix",
"postinstall": "manypkg check",
"lint": "turbo lint",
"prepare": "husky",
"publish-packages": "turbo run build lint test && changeset version && changeset publish",
"test": "echo \"Error: no test specified\""
},
"dependencies": {
"@changesets/cli": "^2.27.1",
"@manypkg/cli": "^0.21.4",
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-check-updates": "^16.14.20",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.5.0",
"prettier-plugin-tailwindcss": "^0.5.14",
"turbo": "^1.13.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}