forked from vercel/turborepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "turbo-monorepo",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "pnpm -- turbo run build",
"build:turbo": "pnpm run --filter=cli build",
"build:ts": "tsc -b tsconfig.project.json",
"lint:prettier": "turbo run lint:prettier",
"check:toml": "taplo format --check",
"turbo": "pnpm run build:turbo && node turbow.js",
"turbo-prebuilt": "node turbow.js",
"prepare": "husky install",
"test": "turbo run test",
"test:integration": "pnpm --filter turborepo-tests-integration exec prysk",
"rustdoc": "RUSTDOCFLAGS=\"-Z unstable-options --enable-index-page\" cargo doc --workspace --no-deps --keep-going || true",
"rustdoc:open": "RUSTDOCFLAGS=\"-Z unstable-options --enable-index-page\" cargo doc --workspace --no-deps --keep-going --open"
},
"devDependencies": {
"@taplo/cli": "^0.5.2",
"@types/react": "18.2.0",
"eslint": "^8.55.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.7",
"semver": "^7.3.8",
"typescript": "5.3.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"*.{md,mdx,mjs,yml,yaml,css}": [
"prettier --write"
],
"*.toml": [
"taplo format"
],
"*.rs": [
"cargo fmt --"
]
},
"packageManager": "[email protected]",
"engines": {
"node": "20.x"
}
}