This repository was archived by the owner on Dec 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.31 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.31 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
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "topping",
"version": "0.0.1",
"private": true,
"scripts": {
"start:storybook": "STORYBOOK=true react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"ios-device": "react-native run-ios --device",
"release:iosstag": "open ./ios/Sumone.xcworkspace",
"release:andstag": "react-native run-android --variant=releaseStaging",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"clean": "watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && yarn",
"storybook": "(adb reverse tcp:7007 tcp:7007 || true) && start-storybook",
"build-storybook": "build-storybook",
"prestory": "rnstl"
},
"dependencies": {
"@expo/react-native-action-sheet": "^3.8.0",
"@react-native-community/async-storage": "1.12.1",
"@react-navigation/bottom-tabs": "6.0.0-next.17",
"@react-navigation/material-top-tabs": "6.0.0-next.14",
"@react-navigation/native": "6.0.0-next.13",
"@react-navigation/native-stack": "6.1.0",
"@react-navigation/stack": "6.0.0-next.24",
"react": "17.0.1",
"react-native": "0.64.2",
"react-native-gesture-handler": "^1.10.3",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.1.1",
"react-native-size-matters": "0.4.0",
"react-native-splash-screen": "3.2.0",
"react-native-swiper": "^1.6.0-rc.3"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/runtime": "^7.14.8",
"@react-native-community/eslint-config": "^3.0.0",
"@storybook/addon-actions": "^5.3",
"@storybook/addon-knobs": "^5.3",
"@storybook/addon-links": "^5.3",
"@storybook/addon-ondevice-actions": "^5.3.23",
"@storybook/addon-ondevice-knobs": "^5.3.25",
"@storybook/addon-storyshots": "^6.0.21",
"@storybook/addons": "6.0.21",
"@storybook/react-native": "^5.3.25",
"@storybook/react-native-server": "^5.3.23",
"@types/jest": "^26.0.22",
"@types/react": "^17.0.17",
"@types/react-native": "^0.64.13",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-dotenv-import": "^2.2.0",
"babel-plugin-module-resolver": "4.1.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.9.1",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.2",
"react-dom": "17.0.1",
"react-native-storybook-loader": "2.0.4",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "17.0.1",
"ts-jest": "^26.3.0",
"typescript": "^4.4.3"
},
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./src",
"./packages"
],
"pattern": "**/*.stories.*",
"outputFile": "./storybook/storyLoader.js"
}
}
}