-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "turborepo-nextjs",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"dev:turbo": "turbo run dev:turbo --parallel",
"lint": "turbo run lint",
"lint:fix": "turbo lint -- --fix && manypkg fix",
"manypkg:fix": "manypkg fix",
"postinstall": "manypkg check",
"typecheck": "turbo typecheck",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky"
},
"engines": {
"node": ">=20.12.2"
},
"packageManager": "pnpm@9.1.0",
"dependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@manypkg/cli": "^0.21.4",
"@shared/eslint-config": "workspace:*",
"@turbo/gen": "^1.13.3",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"turbo": "^1.13.3"
},
"manypkg": {
"ignoredRules": [
"INTERNAL_MISMATCH"
]
}
}