-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.74 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
{
"name": "Splitr",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest --colors",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"dependencies": {
"enzyme-to-json": "^3.3.5",
"expo": "^26.0.0",
"moment": "^2.23.0",
"native-base": "^2.9.2",
"native-base-shoutem-theme": "0.2.2",
"react": "^16.6.1",
"react-dom": "^16.6.3",
"react-native": "0.57.7",
"react-native-gesture-handler": "^1.0.12",
"react-native-router-flux": "^4.0.6",
"react-navigation": "^3.0.8",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"tcomb-form-native": "^0.6.20"
},
"devDependencies": {
"babel-jest": "23.6.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.10.0",
"eslint-plugin-react": "^7.11.1",
"jest": "23.6.0",
"jest-expo": "26.0.0",
"metro-react-native-babel-preset": "^0.50.0",
"react-native-scripts": "1.13.1",
"react-test-renderer": "16.6.1",
"redux-mock-store": "^1.5.3"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"setupTestFrameworkScriptFile": "<rootDir>/setupTests.js",
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"globals": {
"state": true,
"window": true
},
"transformIgnorePatterns": [
"node_modules/(?!react-native|native-base-shoutem-theme|@shoutem/animation|@shoutem/ui|tcomb-form-native)"
],
"setupFiles": [
"<rootDir>/setupTests.js"
]
}
}