-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.05 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest",
"lint": "eslint .",
"lint:ts": "tslint 'src/**/*.{ts,tsx,js}'"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@react-native-community/masked-view": "0.1.5",
"@react-navigation/drawer": "^5.3.1",
"@react-navigation/material-bottom-tabs": "^5.1.3",
"@react-navigation/native": "^5.1.0",
"@react-navigation/stack": "^5.2.1",
"apollo-boost": "^0.4.7",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link-http": "^1.5.16",
"eslint-plugin-graphql": "^3.1.1",
"expo": "~36.0.0",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"moment": "^2.24.0",
"react": "~16.9.0",
"react-apollo": "^3.1.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.0.tar.gz",
"react-native-dotenv": "^0.2.0",
"react-native-event-listeners": "^1.0.7",
"react-native-gesture-handler": "~1.5.0",
"react-native-material-dropdown": "^0.11.1",
"react-native-modal": "^11.5.6",
"react-native-numeric-input": "^1.8.3",
"react-native-paper": "^3.6.0",
"react-native-progress-steps": "^1.2.9",
"react-native-reanimated": "~1.4.0",
"react-native-safe-area-context": "^0.6.0",
"react-native-safe-area-view": "^1.0.0",
"react-native-screens": "2.0.0-alpha.12",
"react-native-status-bar-height": "^2.4.0",
"react-native-tiny-toast": "^1.0.7",
"react-native-vector-icons": "^6.6.0",
"react-native-web": "~0.11.7",
"react-navigation": "^4.3.1",
"react-navigation-drawer": "^2.4.11",
"react-navigation-stack": "^1.10.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/react": "~16.9.0",
"@types/react-native": "~0.60.23",
"@types/react-native-dotenv": "^0.2.0",
"babel-jest": "^25.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-expo": "~8.0.0",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^25.1.0",
"jest-fetch-mock": "^3.0.3",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^1.19.1",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.13.0",
"ts-jest": "^25.3.1",
"typescript": "~3.6.3"
},
"private": true,
"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"
]
}
}