forked from vercel/turborepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.57 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
60
61
{
"name": "turbo-monorepo",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "pnpm -- turbo run build --filter=docs",
"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",
"lint": "eslint . --ext js,jsx,ts,tsx -c ./.eslintrc.js",
"turbo": "cd cli && make turbo && cd .. && node turbow.js",
"docs": "pnpm -- turbo run dev --filter=docs --no-cache",
"run-example": "./scripts/run-example.sh"
},
"devDependencies": {
"@taplo/cli": "^0.4.2",
"@types/react": "18.0.21",
"eslint": "^8.20.0",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"next": "^12.3.1",
"node-gyp": "^9.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"semver": "^7.3.5",
"simple-git-hooks": "^2.7.0",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.@(js|ts)": [
"eslint --quiet --fix"
],
"*.{ts,tsx,md,mdx,js,jsx,mjs,yml,yaml,css}": [
"prettier --write"
],
"*.go": [
"pnpm --filter cli format"
],
"*.toml": [
"taplo format"
],
"*.rs": [
"cargo fmt --"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged && cargo fmt --all"
},
"pnpm": {
"overrides": {
"next@latest": "13.0.2"
}
},
"packageManager": "pnpm@7.13.5"
}