-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
45 lines (45 loc) · 1.38 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
{
"name": "next-sanity-monorepo",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo build --filter=./packages/*",
"bump:canaries": "pnpm -r up @sanity/next-loader@canary @sanity/preview-url-secret@canary @sanity/visual-editing@canary && pnpm dedupe",
"bump:latest": "pnpm -r up @sanity/next-loader@latest @sanity/preview-url-secret@latest @sanity/visual-editing@latest && pnpm dedupe",
"predev": "pnpm build",
"dev": "turbo dev",
"format": "prettier --cache --write .",
"lint": "turbo lint",
"prestart": "turbo build",
"start": "turbo watch build start",
"test": "turbo test",
"type-check": "turbo type-check"
},
"devDependencies": {
"@next/bundle-analyzer": "15.0.4-canary.12",
"@next/env": "15.0.4-canary.12",
"@sanity/prettier-config": "1.0.3",
"eslint-config-next": "15.0.4-canary.12",
"next": "15.0.4-canary.12",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.3",
"prettier-plugin-tailwindcss": "0.6.8",
"turbo": "2.3.0"
},
"packageManager": "pnpm@9.13.2",
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"react",
"react-dom",
"react-is"
]
},
"overrides": {
"@next/bundle-analyzer": "$@next/bundle-analyzer",
"@next/env": "$@next/env",
"eslint-config-next": "$eslint-config-next",
"next": "$next"
}
}
}