This repository has been archived by the owner on Mar 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
142 lines (142 loc) · 4 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "textile",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"tsc": "tsc -p . --noEmit",
"lint": "eslint --fix --ext .mjs,.js,.jsx,.ts,.tsx ."
},
"dependencies": {
"@textile/react-native-camera-roll": "1.1.6",
"@textile/react-native-icon": "^1.0.0",
"@textile/react-native-sdk": "3.0.11",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"react": "16.6.3",
"react-native": "0.58.6",
"react-native-actionsheet": "^2.4.2",
"react-native-background-fetch": "^2.4.3",
"react-native-config": "^0.11.7",
"react-native-contacts": "^3.1.2",
"react-native-easy-toast": "1.2.0",
"react-native-elements": "1.0.0-beta7",
"react-native-firebase": "5.2.5",
"react-native-fs": "^2.11.17",
"react-native-gesture-handler": "^1.3.0",
"react-native-hyperlink": "0.0.14",
"react-native-image-pan-zoom": "^2.1.11",
"react-native-image-picker": "^0.28.1",
"react-native-keyboard-input": "textileio/react-native-keyboard-input",
"react-native-modal": "^6.5.0",
"react-native-progress": "^3.6.0",
"react-native-push-notification": "^3.1.1",
"react-native-qrcode": "^0.2.7",
"react-native-reanimated": "1.0.1",
"react-native-scalable-image": "^0.4.0",
"react-native-tab-view": "^2.6.1",
"react-native-version-number": "textileio/react-native-version-number",
"react-navigation": "^3.9.1",
"react-navigation-header-buttons": "^2.1.0",
"react-redux": "6.0.1",
"redux": "^4.0.0",
"redux-persist": "^5.10.0",
"redux-saga": "^0.16.1",
"stacktrace-js": "^2.0.0",
"typesafe-actions": "3.4.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/enzyme": "^3.1.14",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^24.0.11",
"@types/react": "^16.4.15",
"@types/react-native": "^0.57.58",
"@types/react-native-fs": "^2.8.2",
"@types/react-native-push-notification": "^3.0.3",
"@types/react-native-qrcode": "^0.2.2",
"@types/react-redux": "6.0.14",
"@types/react-test-renderer": "^16.8.1",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "24.7.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.16.0",
"eslint-config-bevry": "^1.2.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"jest": "24.7.1",
"jest-fetch-mock": "^1.6.6",
"metro-react-native-babel-preset": "0.53.1",
"prettier": "^1.17.0",
"react-dom": "^16.5.2",
"react-test-renderer": "16.6.3",
"reactotron-react-native": "^2.1.0",
"reactotron-redux": "^2.1.0",
"reactotron-redux-saga": "^2.1.0",
"ts-jest": "^24.0.2",
"typescript": "^3.2.4"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"
}
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePaths": [
"<rootDir>/node_modules"
],
"setupFiles": [
"./tests/setup.js"
]
},
"eslintConfig": {
"extends": [
"bevry"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"no-sync": 0,
"no-undefined": 0,
"default-case": 0,
"react/no-string-refs": 1,
"func-style": [
"error",
"declaration",
{
"allowArrowFunctions": true
}
]
}
},
"prettier": {
"semi": false,
"singleQuote": true
}
}