-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.81 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "GithubInfos",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "cd android &&./gradlew clean && cd .. && npx react-native run-android ",
"ios": "cd ios && xcodebuild clean && cd .. && npx react-native run-ios",
"yarn-ios": "yarn && yarn pod",
"android-release": "npx react-native run-android --variant=release",
"start": "npx react-native start --reset-cache",
"format": "prettier --check ./src",
"check-code": "prettier --check **/*.{ts,tsx,js,json,md}",
"test": "jest",
"link": "npx react-native link",
"apk": "cd android &&./gradlew clean && ./gradlew assembleRelease && cd ..",
"aab": "cd android &&./gradlew clean && ./gradlew bundleRelease && cd ..",
"lint": "eslint --ext .jsx --ext .js src/",
"pod": "cd ios && pod install && cd ..",
"storybook": "start-storybook -p 7007",
"prestorybook": "rnstl",
"build-storybook": "build-storybook"
},
"dependencies": {
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/blur": "^3.6.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/netinfo": "^5.9.7",
"@react-navigation/native": "^5.8.9",
"@react-navigation/stack": "^5.12.6",
"@reduxjs/toolkit": "^1.4.0",
"axios": "^0.21.0",
"eslint-plugin-react-hooks": "^4.2.0",
"i18next": "^19.8.3",
"moment": "^2.29.1",
"react": "16.13.1",
"react-i18next": "^11.7.3",
"react-native": "0.63.3",
"react-native-dev-menu": "^4.0.2",
"react-native-fast-image": "^8.3.4",
"react-native-gesture-handler": "^1.8.0",
"react-native-modal": "^11.5.6",
"react-native-paper": "^4.4.1",
"react-native-reanimated": "^1.13.2",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.15.0",
"react-native-spinkit": "^1.5.0",
"react-native-splash-screen": "^3.2.0",
"react-native-vector-icons": "^7.1.0",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.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.23",
"@storybook/react-native": "^5.3.23",
"@storybook/react-native-server": "^5.3.23",
"@types/jest": "^26.0.15",
"@types/react-native": "^0.63.35",
"@types/react-redux": "^7.1.11",
"@types/react-test-renderer": "^16.9.3",
"@types/redux-logger": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-transform-typescript-metadata": "^0.3.0",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.64.0",
"prettier": "^2.2.1",
"react-dom": "16.13.1",
"react-native-storybook-loader": "^2.0.2",
"react-test-renderer": "^17.0.1",
"typescript": "^4.0.5"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./src/components/stories"
],
"pattern": "**/*.stories.js",
"outputFile": "./storybook/storyLoader.js"
}
}
}