forked from sanity-io/sanity-astro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1 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
{
"name": "astro",
"private": true,
"scripts": {
"build": "turbo run build",
"build:example": "turbo run build --filter=example...",
"build:example-ssr": "turbo run build --filter=example-ssr...",
"build:movies": "turbo run build --filter=movies...",
"clean": "turbo run clean && rimraf .turbo && rimraf node_modules",
"dev": "turbo run dev",
"dev:example": "turbo run dev --filter=example",
"dev:example-ssr": "turbo run dev --filter=example-ssr",
"dev:movies": "turbo run dev --filter=movies",
"format": "prettier --write .",
"lint": "turbo run lint"
},
"devDependencies": {
"@sanity/prettier-config": "^1.0.2",
"@turbo/gen": "^1.13.4",
"eslint": "^8.57.0",
"eslint-config-custom": "*",
"prettier": "^3.3.1",
"prettier-plugin-astro": "^0.13.0",
"rimraf": "^5.0.7",
"turbo": "^1.13.4"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"braces@<3.0.3": ">=3.0.3",
"ws@>=8.0.0 <8.17.1": ">=8.17.1"
}
}
}