-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 2.54 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
{
"name": "rssTwo",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"test:watch": "jest --watch",
"test:end": "detox",
"devtools": "./node_modules/.bin/react-devtools",
"start-app": "./node_modules/.bin/appium --default-capabilities '{\"launchTimeout\": 720000}'"
},
"dependencies": {
"create-react-class": "^15.5.3",
"fathom-web": "^2.1.0",
"lottie-react-native": "^2.5.0",
"prop-types": "^15.5.10",
"react": "^16.2.0",
"react-native": "^0.51.0",
"react-native-linear-gradient": "^2.4.0",
"react-native-vector-icons": "^4.2.0",
"react-redux": "^5.0.5",
"redux": "^3.6.0",
"redux-promise-middleware": "^4.3.0",
"redux-thunk": "^2.2.0",
"seamless-immutable": "^7.1.2"
},
"devDependencies": {
"appium": "^1.7.2",
"babel-jest": "^20.0.3",
"babel-polyfill": "^6.20.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-native": "^4.0.0",
"babel-runtime": "^6.20.0",
"cavy": "^0.5.0",
"detox": "^5.10.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.2.1",
"jest-cli": "^22.2.1",
"jest-fetch-mock": "^1.0.6",
"jsverify": "^0.7.4",
"mocha": "^3.5.3",
"mock-async-storage": "^1.0.1",
"react-devtools": "^2.4.0",
"react-dom": "^16.2.0",
"react-generator-templates": "^1.0.6",
"react-native-mock": "^0.3.1",
"react-test-renderer": "^16.2.0",
"redux-mock-store": "^1.2.3",
"underscore": "^1.8.3",
"util": "^0.10.3",
"wd": "^1.1.1"
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"/e2e/",
"/node_modules/",
"<rootDir>/build/",
"<rootDir>/node_modules/",
"<rootDir>/e2e/>"
]
},
"detox": {
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/rssTwo.app",
"build": "xcodebuild -project ios/example.xcodeproj -scheme example -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone 6"
},
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/rssTwo.app",
"build": "xcodebuild -project ios/example.xcodeproj -scheme example -configuration Release -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone 6"
}
}
}
}