-
Notifications
You must be signed in to change notification settings - Fork 4.5k
/
Copy pathpackage.json
38 lines (38 loc) · 907 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
36
37
38
{
"name": "react-native-website-monorepo",
"private": true,
"engines": {
"node": ">=20"
},
"workspaces": [
"website",
"plugins/*",
"scripts/*",
"sync-api-docs"
],
"scripts": {
"update-lock": "yarn dedupe",
"docusaurus": "yarn --cwd website docusaurus",
"start": "yarn --cwd website start",
"build": "yarn --cwd website build",
"build:fast": "yarn --cwd website build:fast",
"serve": "yarn --cwd website serve"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-yml": "^1.2.0",
"husky": "^4.3.8",
"netlify-plugin-cache": "^1.0.3",
"prettier": "^3.4.2",
"pretty-quick": "^4.0.0"
},
"packageManager": "[email protected]"
}