-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.89 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
{
"name": "MandMobileRNSamples",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"ios": "react-native run-ios",
"android": "react-native run-android",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"react": "16.8.3",
"react-native": "0.59.4",
"crypto-js": "^3.1.9-1",
"mand-mobile-rn": "^0.1.0-beta.1",
"react-native-gesture-handler": "^1.0.16",
"react-navigation": "^3.3.2",
"react-navigation-redux-helpers": "^3.0.0",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"redux-watch": "^1.1.1",
"rmc-tabs": "^1.2.29",
"tslib": "^1.9.3"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/runtime": "^7.5.1",
"@react-native-community/eslint-config": "^0.0.5",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.23",
"@types/react-native": "^0.60.0",
"@types/react-test-renderer": "^16.8.2",
"@types/react-navigation": "^3.0.4",
"@types/react-redux": "^7.0.1",
"@types/remote-redux-devtools": "^0.5.3",
"babel-jest": "^24.8.0",
"eslint": "^6.0.1",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "^0.55.0",
"react-test-renderer": "16.8.6",
"typescript": "^3.5.3",
"prettier": "^1.16.4",
"prettier-tslint": "^0.4.2",
"tslint": "^5.13.0",
"tslint-react": "^3.6.0"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js)$": "<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/",
"<rootDir>/output/"
],
"cacheDirectory": ".jest/cache"
}
}