forked from vercel/turborepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.52 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "turbo-monorepo",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "pnpm -- turbo run build --filter=docs",
"build:turbo": "pnpm run --filter=cli build",
"build:ts": "tsc -b tsconfig.project.json",
"check:prettier": "prettier -c .",
"check:toml": "taplo format --check",
"format": "run-p format:prettier format:rs format:toml",
"format:prettier": "prettier -w .",
"format:rs": "cargo fmt --all",
"format:toml": "taplo format",
"turbo": "pnpm run build:turbo && node turbow.js",
"turbo-prebuilt": "node turbow.js",
"docs": "pnpm -- turbo run dev --filter=docs --no-cache",
"run-example": "./scripts/run-example.sh",
"prepare": "husky install"
},
"devDependencies": {
"@taplo/cli": "^0.5.2",
"@types/react": "18.0.26",
"eslint": "^8.29.0",
"eslint-config-next": "^13.0.6",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"next": "^13.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"semver": "^7.3.8",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --ext js,jsx,ts,tsx --quiet --fix --",
"prettier --write"
],
"*.{md,mdx,mjs,yml,yaml,css}": [
"prettier --write"
],
"*.go": [
"pnpm --filter cli format"
],
"*.toml": [
"taplo format"
],
"*.rs": [
"cargo fmt --"
]
},
"pnpm": {
"overrides": {
"next@latest": "13.0.6"
}
},
"packageManager": "pnpm@7.18.2"
}