forked from facebook/react-native-website
-
Notifications
You must be signed in to change notification settings - Fork 326
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.59 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.59 KB
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
51
52
53
{
"name": "react-native-website-monorepo",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"workspaces": [
"cnwebsite",
"packages/*",
"plugins/*"
],
"scripts": {
"docusaurus": "yarn --cwd cnwebsite docusaurus",
"start": "yarn --cwd cnwebsite start",
"build": "yarn --cwd cnwebsite build",
"build:fast": "yarn --cwd cnwebsite build:fast",
"serve": "yarn --cwd cnwebsite serve",
"prepare": "husky",
"lint": "eslint .",
"lint:packages": "yarn workspaces foreach --from \"packages/*\" -p -R run lint",
"lint:plugins": "yarn workspaces foreach --from \"plugins/*\" -p -R run lint && yarn workspaces foreach --from \"plugins/*\" -p -R run test",
"lint:website": "eslint ./website ./docs",
"update-lock": "yarn dedupe",
"check-dependencies": "manypkg check"
},
"devDependencies": {
"@eslint/css": "^0.14.1",
"@eslint/js": "^9.39.3",
"@manypkg/cli": "^0.25.1",
"@typescript-eslint/parser": "^8.56.1",
"alex": "^11.0.1",
"case-police": "^2.2.0",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-alex": "^1.0.0",
"eslint-plugin-case-police": "2.2.0",
"eslint-plugin-mdx": "^3.7.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-yml": "^3.2.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"pretty-quick": "^4.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"packageManager": "yarn@4.13.0",
"resolutions": {
"serialize-javascript": "^7.0.3",
"serve-handler/minimatch": "3.1.4"
}
}