forked from facebook/react-native-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.48 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.48 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
{
"name": "react-native-website-monorepo",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"workspaces": [
"website",
"packages/*",
"plugins/*"
],
"scripts": {
"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",
"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.2",
"@manypkg/cli": "^0.25.1",
"@typescript-eslint/parser": "^8.48.1",
"alex": "^11.0.1",
"case-police": "^2.1.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-alex": "^1.0.0",
"eslint-plugin-case-police": "2.1.1",
"eslint-plugin-mdx": "^3.6.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-yml": "^1.19.1",
"globals": "^17.0.0",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"pretty-quick": "^4.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0"
},
"packageManager": "yarn@4.12.0"
}