-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 901 Bytes
/
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": "lcapi-examples",
"private": true,
"scripts": {
"format": "prettier --cache --write .",
"lint": "pnpm -r lint",
"type-check": "pnpm -r type-check",
"typegen": "pnpm -r run schema:extract && pnpm -r run typegen:generate"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@sanity/prettier-config": "^1.0.3",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.2.8",
"prettier-plugin-tailwindcss": "^0.6.9",
"sanity": "^3.64.2"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"react",
"react-dom",
"react-is"
]
},
"overrides": {
"@types/react": "$@types/react",
"@types/react-dom": "$@types/react-dom"
}
}
}