forked from vercel/turborepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 821 Bytes
/
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
{
"name": "turbo",
"version": "0.0.0",
"private": true,
"scripts": {
"format": "prettier --write",
"deduplicate": "npx yarn-deduplicate -s fewer yarn.lock",
"deduplicate:check": "npx yarn-deduplicate -s fewer yarn.lock --list --fail",
"docs": "./turbow.sh run dev --scope='docs' --no-cache",
"build": "./turbow.sh run build --scope=docs",
"turbo": "./turbow.sh",
"run-example": "./scripts/run-example.sh"
},
"devDependencies": {
"lint-staged": "^12.3.2",
"prettier": "^2.5.0",
"simple-git-hooks": "^2.7.0"
},
"lint-staged": {
"*.{ts,tsx,md,mdx,js,jsx}": [
"prettier --write"
],
"*.go": [
"sh -c \"cd cli && pnpm format\""
]
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"packageManager": "[email protected]"
}