This repository was archived by the owner on Aug 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
92 lines (92 loc) · 3.57 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
{
"name": "react-native-boilerplate",
"version": "1.1.0",
"private": true,
"scripts": {
"start": "react-native start",
"test": "jest",
"lint": "eslint './src/**/*.{ts,tsx}'",
"android": "react-native run-android",
"ios": "react-native run-ios",
"format": "yarn run lint -- --fix",
"pretty": "prettier --write --config .prettierrc.js ./src/**/*.{ts,tsx}",
"clear": "watchman watch-del-all && rm -rf /tmp/metro-bundler-cache-* && rm -rf /tmp/haste-map-react-native-packager-* && react-native start --reset-cache",
"storybook": "start-storybook -p 7007",
"rename": "react-native-rename",
"pods": "cd ios && pod install && cd ..",
"i18next:extract": "i18next 'src/**/**/*.tsx' --config 'src/I18n/i18n-parser.config.js'"
},
"dependencies": {
"@apollo/client": "3.2.5",
"@react-native-community/async-storage": "1.12.1",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/native": "5.7.3",
"@react-navigation/stack": "5.9.0",
"apollo3-cache-persist": "0.8.0",
"graphql": "15.4.0",
"i18next": "17.3.1",
"isomorphic-fetch": "2.2.1",
"query-string": "6.13.1",
"react": "17.0.1",
"react-i18next": "10.13.2",
"react-native": "0.63.3",
"react-native-bootsplash": "2.2.5",
"react-native-code-push": "6.3.0",
"react-native-gesture-handler": "1.7.0",
"react-native-localize": "^2.0.1",
"react-native-reanimated": "1.13.0",
"react-native-safe-area-context": "3.1.7",
"react-native-screens": "2.10.1",
"styled-components": "4.4.1"
},
"devDependencies": {
"@babel/core": "7.13.8",
"@babel/runtime": "7.13.9",
"@react-native-community/eslint-config": "2.0.0",
"@storybook/addon-actions": "5.3.21",
"@storybook/addon-links": "5.3.21",
"@storybook/addons": "5.3.21",
"@storybook/react-native": "5.3.21",
"@storybook/react-native-server": "5.3.21",
"@types/enzyme": "3.10.5",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/jest": "26.0.15",
"@types/jsdom": "12.2.4",
"@types/node": "12.12.54",
"@types/react": "16.9.55",
"@types/react-native": "0.63.32",
"@types/react-native-dotenv": "0.2.0",
"@types/react-test-renderer": "16.9.3",
"@types/styled-components": "4.4.3",
"@typescript-eslint/eslint-plugin": "2.34.0",
"awesome-typescript-loader": "5.2.1",
"babel-jest": "26.6.3",
"babel-loader": "8.1.0",
"babel-plugin-module-resolver": "3.2.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.4",
"enzyme-to-json": "3.5.0",
"eslint": "5.16.0",
"eslint-config-airbnb-typescript": "4.0.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.6",
"i18next-parser": "^3.6.0",
"jest": "26.6.3",
"jest-styled-components": "6.3.4",
"jsdom": "15.2.1",
"metro-react-native-babel-preset": "0.63.0",
"react-docgen-typescript-loader": "3.7.2",
"react-docgen-typescript-webpack-plugin": "1.1.0",
"react-dom": "17.0.1",
"react-native-dotenv": "0.2.0",
"react-native-rename": "2.4.1",
"react-test-renderer": "17.0.1",
"redux-mock-store": "1.5.4",
"typescript": "4.0.5"
},
"jest": {
"preset": "react-native"
}
}