-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
35 lines (35 loc) · 1.27 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
{
"name": "nextjs-template",
"private": true,
"scripts": {
"build": "turbo build ",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"dev": "turbo dev --parallel",
"format": "turbo format --continue -- --cache --cache-location='node_modules/.cache/.prettiercache' --ignore-path='../../.gitignore'",
"format:fix": "turbo format --continue -- --write --cache --cache-location='node_modules/.cache/.prettiercache' --ignore-path='../../.gitignore'",
"lint": "turbo lint -- --quiet -- --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg check",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location 'node_modules/.cache/.eslintcache' ",
"typecheck": "turbo typecheck",
"postinstall": "bun run check-deps",
"check-deps": "check-dependency-version-consistency .",
"gen": "turbo gen --config 'turbo/generators/config.ts'"
},
"devDependencies": {
"@turbo/gen": "1.13.2",
"prettier": "3.2.5",
"turbo": "1.13.2",
"typescript": "5.4.5",
"check-dependency-version-consistency": "4.1.0"
},
"engines": {
"node": ">=18"
},
"prettier": "@saasfly/prettier-config",
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
],
"packageManager": "bun@1.1.2"
}