-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.01 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.01 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
{
"name": "app",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest --verbose",
"lint": "eslint .",
"prettier": "prettier --write '**/*.js'",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"axios": "^0.18.1",
"prop-types": "^15.6.0",
"react": "16.0.0",
"react-dom": "^16.2.1",
"react-native": "0.60.0",
"react-native-elements": "^0.18.5",
"react-native-vector-icons": "^6.4.1",
"react-navigation": "^1.0.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-persist": "^5.4.0",
"redux-thunk": "^2.2.0",
"snyk": "^1.236.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "7",
"babel-jest": "22.0.4",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-native": "4.0.0",
"detox": "^6.0.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "3.x",
"eslint-config-rallycoding": "^3.2.0",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "^0.62.0",
"jest": "22.0.4",
"mocha": "^4.1.0",
"prettier": "1.9.2",
"prettier-eslint": "^8.7.0",
"react-native-mock": "^0.3.1",
"react-test-renderer": "^16.2.0",
"redux-mock-store": "^1.4.0"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"(node_modules)/(?!react-native|parse|react-navigation)"
],
"testPathIgnorePatterns": [
"node_modules",
"e2e"
]
},
"detox": {
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/app.app",
"build": "xcodebuild -project ios/app.xcodeproj -scheme app -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone 8 Plus"
}
}
},
"snyk": true
}