-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.42 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
113
{
"name": "RNApl",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"eslint": "./node_modules/.bin/eslint --ext .ts,tsx src/",
"flow": "./node_modules/.bin/flow",
"postinstall": "patch-package",
"tsc": "tsc --noEmit -w"
},
"dependencies": {
"@react-native-community/async-storage": "^1.4.0",
"@react-native-community/masked-view": "^0.0.5",
"@react-native-community/netinfo": "^3.1.0",
"@react-native-community/slider": "^1.1.2",
"@react-native-community/viewpager": "^1.1.7",
"formik": "^1.5.1",
"i18n-js": "^3.2.1",
"react": "16.8.3",
"react-native": "0.59.8",
"react-native-animatable": "^1.3.2",
"react-native-device-info": "^2.2.2",
"react-native-gesture-handler": "^1.1.0",
"react-native-keyboard-aware-scroll-view": "^0.8.0",
"react-native-languages": "^3.0.2",
"react-native-reanimated": "^1.0.0-alpha.12",
"react-native-splash-screen": "^3.2.0",
"react-native-vector-icons": "^6.4.2",
"react-navigation": "^3.5.1",
"react-redux": "^7.0.3",
"redux": "^4.0.1",
"redux-persist": "^5.10.0",
"redux-saga": "^1.0.2",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"utility-types": "^3.4.1",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/runtime": "^7.4.4",
"@react-native-community/eslint-config": "^0.0.5",
"@types/enzyme": "^3.9.2",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/i18n-js": "^3.0.1",
"@types/jasmine": "^3.3.12",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.18",
"@types/react-native": "^0.57.58",
"@types/react-native-vector-icons": "^6.4.0",
"@types/react-navigation": "^3.0.7",
"@types/react-redux": "^7.0.9",
"@types/react-test-renderer": "^16.8.1",
"@types/yup": "^0.26.13",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"add": "^2.0.6",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.1",
"eslint": "^5.16.0",
"eslint-plugin-flowtype": "^3.9.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-import-order-autofix": "^0.8.3",
"eslint-plugin-jest": "22.5.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.4.0",
"git-hooks": "^1.1.10",
"jest": "^24.8.0",
"jest-fetch-mock": "^2.1.2",
"metro-react-native-babel-preset": "^0.54.0",
"patch-package": "^6.1.2",
"postinstall-postinstall": "^2.0.0",
"react-dom": "^16.8.6",
"react-native-typescript-transformer": "^1.2.12",
"react-test-renderer": "16.8.3",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5",
"utility-types": "^3.4.1",
"yarn": "^1.16.0"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.jest.json"
}
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePaths": [
"<rootDir>"
],
"setupFiles": [
"./tests/setup.js"
]
}
}