-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 912 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 912 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
{
"name": "kibohive",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"git:commit": "git add . && git commit -m \"📝 Automatic changes\" -m \"✏️ Title: Automated code update\" -m \"📅 Date: $(date '+%Y-%m-%d %H:%M:%S')\" -m \"📝 Modified files: $(git diff --name-only HEAD | sed 's/^/- /')\" || echo '⚠️ No changes to commit'",
"git:push": "git push origin $(git rev-parse --abbrev-ref HEAD)",
"git:commit-push": "yarn git:commit && yarn git:push",
"remove:package-lock": "find . -name 'package-lock.json' -type f -delete"
},
"devDependencies": {
"prettier": "^3.2.5",
"turbo": "^2.3.4",
"typescript": "5.5.4"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@1.22.22",
"workspaces": [
"apps/*",
"packages/*"
]
}