-
-
Notifications
You must be signed in to change notification settings - Fork 154
/
package.json
69 lines (69 loc) · 2.02 KB
/
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
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
{
"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/*"
]
},
"scripts": {
"bootstrap": "node ./scripts/bootstrap.js",
"dev": "lerna run dev --stream --parallel",
"dev:check-types": "tsc --noEmit",
"github-release": "github-release-from-changelog",
"lint": "cross-env NODE_ENV=production eslint --cache --cache-location=.cache/eslint --ext .js,.jsx,.html,.ts,.tsx,.mjs --report-unused-disable-directives",
"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",
"repo:fix": "sherif --fix"
},
"devDependencies": {
"@react-native/eslint-config": "^0.72.1",
"cross-env": "^7.0.3",
"eslint": "8.24.0",
"lerna": "^8.1.2",
"sherif": "^1.0.0",
"typescript": "^5.3.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"
},
"engines": {
"node": ">=16",
"yarn": ">=1.3.2"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/storybook"
},
"packageManager": "[email protected]"
}