-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
70 lines (70 loc) · 2.24 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
70
{
"name": "RNStorybook",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "yarn run prestorybook && react-native run-android",
"ios": "yarn run prestorybook && react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"prestorybook": "rnstl",
"storybook": "start-storybook -p 7007",
"build-react": "webpack --mode production",
"start-react": "webpack-dev-server --config ./webpack.config.js --mode development",
"start-storybook-web": "./node_modules/@storybook/react/bin/index.js",
"build-storybook-web": "./node_modules/@storybook/react/bin/build.js",
"storybook-web": "yarn run start-storybook-web",
"build:storybook-web": "yarn run build-storybook-web"
},
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./src/components"
],
"pattern": "**/*.stories.js",
"outputFile": "./storybook/storyLoader.js"
}
},
"dependencies": {
"react": "16.13.1",
"react-native": "0.63.1",
"react-native-web": "^0.13.4",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^2.0.0",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/react": "^5.3.19",
"@storybook/react-native": "^5.3.19",
"@storybook/react-native-server": "^5.3.19",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.5.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-react-native": "^3.8.1",
"html-webpack-plugin": "^4.3.0",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^2.0.5",
"react-dom": "^16.13.1",
"react-native-storybook-loader": "^2.0.2",
"react-test-renderer": "16.13.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"jest": {
"preset": "react-native"
}
}