-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "cms-kit",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"dev:sb": "turbo run dev --filter=storyblok",
"build:sb": "turbo run build --filter=storyblok",
"start:sb": "turbo run start --filter=storyblok",
"proxy:sb": "turbo run proxy --filter=storyblok",
"dev:sa": "turbo run dev --filter=sanity",
"build:sa": "turbo run build --filter=sanity",
"start:sa": "turbo run start --filter=sanity",
"proxy:sa": "turbo run proxy --filter=sanity",
"lint": "turbo run lint",
"lint:fix": "turbo lint -- --fix && manypkg fix",
"manypkg:fix": "manypkg fix",
"typecheck": "turbo typecheck",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"engines": {
"node": ">=20.*"
},
"packageManager": "pnpm@9.2.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": "^2.0.6",
"dotenv": "^16.4.5",
"inquirer": "^12.0.0",
"open": "^10.1.0",
"ora": "^8.1.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"turbo": "^2.2.3"
},
"manypkg": {
"ignoredRules": [
"INTERNAL_MISMATCH"
]
}
}