forked from storybookjs/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.36 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.36 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@storybook/root",
"version": "8.3.1",
"private": true,
"description": "Storybook for React Native is an open source tool for developing UI components in isolation. It makes building stunning UIs organized and efficient.",
"keywords": [
"components",
"documentation",
"frontend",
"markup",
"react-native",
"reuseable",
"storybook",
"storybookjs",
"templated",
"tool",
"ui",
"user interface"
],
"homepage": "https://storybook.js.org/",
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/react-native.git"
},
"workspaces": {
"packages": [
"packages/*",
"examples/*",
"docs"
]
},
"scripts": {
"example": "yarn workspace expo-example storybook",
"dev": "lerna run dev --stream --parallel",
"dev:check-types": "tsc --noEmit",
"lint": "eslint --cache -c ./eslint.config.js",
"lint:fix": "lint --fix",
"build": "lerna run prepare",
"version-packages": "lerna version --force-publish",
"publish:alpha": "lerna publish from-git --dist-tag alpha",
"publish:latest": "lerna publish from-git --dist-tag latest",
"publish:next": "lerna publish from-git --dist-tag next",
"test:ci": "lerna run test:ci",
"test": "lerna run test",
"repo:lint": "sherif -r unsync-similar-dependencies",
"repo:fix": "sherif --fix -r unsync-similar-dependencies",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"update-storybook-deps": "node scripts/update-external-storybook-deps.mts"
},
"devDependencies": {
"@docusaurus/eslint-plugin": "^3.9.2",
"cross-env": "^10.1.0",
"eslint": "^9.38.0",
"eslint-config-expo": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"lerna": "^9.0.1",
"prettier": "^3.6.2",
"sherif": "^1.7.0",
"typescript": "~5.9.3"
},
"resolutions": {
"react-docgen-typescript": "2.2.2",
"jotai@^2.6.2": "patch:jotai@npm%3A2.6.2#./.yarn/patches/jotai-npm-2.6.2-d482bf2d42.patch",
"webpack-dev-server": "^5.2.2",
"markdown-it": "^14.0.0",
"@types/markdown-it": "^14.0.1",
"react-native-web": "^0.21.0"
},
"engines": {
"node": ">=22.18.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/storybook"
},
"packageManager": "yarn@4.9.4"
}