-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 1.91 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
{
"name": "ReactNativeTDD",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest tests/**/*.spec.js",
"testonly": "jest",
"lint": "eslint *.js e2e/*.js tests/**/*.js"
},
"dependencies": {
"axios": "^0.18.0",
"mobx": "^5.1.0",
"mobx-react": "^5.2.5",
"react": "16.4.1",
"react-native": "0.56.1",
"react-native-config": "^0.11.5",
"react-native-elements": "^0.19.1",
"react-native-vector-icons": "^5.0.0",
"react-navigation": "^2.11.2"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.47",
"@babel/plugin-proposal-decorators": "7.0.0-beta.47",
"@jonny/react-native-mock": "^0.4.2",
"babel-core": "^7.0.0-0",
"babel-eslint": "^8.2.6",
"babel-jest": "23.6.0",
"babel-preset-react-native": "^5",
"detox": "^9.0.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-codingitwrong": "^0.1.2",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.18.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"jest": "23.6.0",
"mocha": "^5.2.0",
"react-test-renderer": "16.4.2"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./tests/setup.js"
],
"transformIgnorePatterns": [
"/node_modules/(?!react-native).+\\.js$"
]
},
"detox": {
"test-runner": "mocha",
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/ReactNativeTDD.app",
"build": "ENVFILE=.env.detox xcodebuild -project ios/ReactNativeTDD.xcodeproj -scheme ReactNativeTDD -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone 8"
}
}
}
}