-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·90 lines (90 loc) · 2.64 KB
/
package.json
File metadata and controls
executable file
·90 lines (90 loc) · 2.64 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
{
"name": "rn-boilerplate",
"version": "1.0.0",
"main": "index.js",
"private": true,
"scripts": {
"native:start": "react-native start",
"native:android": "react-native run-android",
"native:ios": "react-native run-ios",
"native:link": "react-native link",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"test": "jest"
},
"dependencies": {
"@okgrow/react-native-copilot": "^2.4.1",
"apollo-cache-inmemory": "^1.3.11",
"apollo-client": "^2.4.7",
"apollo-link": "^1.2.4",
"apollo-link-error": "^1.1.2",
"apollo-link-http": "^1.5.7",
"apollo-link-rest": "^0.6.0",
"apollo-link-state": "^0.4.2",
"apollo-link-ws": "^1.0.10",
"applicationinsights": "^1.0.7",
"formik": "^1.3.2",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"i18next": "^12.1.0",
"moment": "^2.22.2",
"react": "^16.7.0-alpha.2",
"react-apollo": "^2.3.2",
"react-dom": "^16.7.0-alpha.2",
"react-i18next": "^8.3.8",
"react-native": "^0.57.7",
"react-native-gesture-handler": "^1.0.10",
"react-native-languages": "^3.0.1",
"react-native-paper": "^2.2.8",
"react-native-responsive-screen": "^1.1.10",
"react-native-screens": "^1.0.0-alpha.16",
"react-native-svg": "^8.0.8",
"react-native-typography": "^1.4.0",
"react-native-vector-icons": "^6.1.0",
"react-navigation": "^3.0.2",
"subscriptions-transport-ws": "^0.9.15",
"victory-native": "^31.0.0",
"yup": "^0.26.6"
},
"devDependencies": {
"@types/i18next": "^12.1.0",
"@types/jest": "^23.3.10",
"@types/react": "^16.7.9",
"@types/react-native-vector-icons": "^4.6.4",
"@types/react-test-renderer": "^16.0.3",
"@types/victory": "^0.9.21",
"metro-react-native-babel-preset": "^0.50.0",
"prettier": "^1.15.3",
"react-test-renderer": "16.7.0-alpha.2",
"rnpm-plugin-dom": "^0.5.0-alpha.11",
"schedule": "^0.5.0",
"ts-jest": "^23.10.5",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^3.6.0",
"typescript": "^3.3.0-dev.20181127",
"victory": "^31.0.1"
},
"jest": {
"preset": [
"react-native"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest/cache"
}
}