This repository has been archived by the owner on Aug 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
91 lines (91 loc) · 3.52 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
87
88
89
90
91
{
"name": "CliqzS",
"version": "0.0.1",
"license": "MPL-2.0",
"private": true,
"scripts": {
"lint": "tsc --noEmit && eslint app e2e index.js && tslint app/**/*.ts app/**/*.tsx",
"test:e2e": "detox test -c ios.sim.release --debug-synchronization 10000 --platform ios",
"test:e2e:build": "detox build --configuration ios.sim.release",
"start": "node node_modules/react-native/local-cli/cli.js start",
"bundle:ios": "node ./node_modules/react-native/local-cli/cli.js bundle --platform ios --entry-file index.js --bundle-output ios/CliqzS/main.jsbundle --dev=false --verbose",
"test": "jest"
},
"dependencies": {
"@cliqz-oss/react-native-sqlite-2": "1.5.3",
"browser-core": "https://s3.amazonaws.com/cdncliqz/update/edge/cliqzs/master/1.25.0.1b205.tgz",
"buffer": "5.0.7",
"https-browserify": "1.0.0",
"number-to-locale-string": "^1.2.0",
"path-browserify": "0.0.0",
"pouchdb-adapter-react-native-sqlite": "1.0.3",
"pouchdb-react-native": "6.3.4",
"react": "^16.3.0",
"react-native": "^0.53.0",
"react-native-beacons-manager": "^1.0.7",
"react-native-collapsible": "0.8.1",
"react-native-device-info": "0.10.2",
"react-native-fs": "2.8.1",
"react-native-gifted-chat": "^0.4.3",
"react-native-navigation": "^1.1.428",
"react-native-scalable-image": "^0.4.0",
"react-native-share": "1.0.23",
"react-native-snap-carousel": "3.3.4",
"react-native-sqlite-2": "^1.5.2",
"react-native-view-shot": "2.2.0",
"react-native-windows": "0.51.0-rc.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0-beta.2",
"redux-thunk": "^2.2.0",
"rnpm-plugin-windows": "^0.2.6",
"stream-browserify": "2.0.1",
"stream-http": "2.7.2",
"url": "^0.11.0"
},
"devDependencies": {
"@types/react": "^16.3.0",
"@types/react-native": "^0.52.2",
"@types/react-native-navigation": "^1.1.5",
"@types/react-redux": "^5.0.15",
"@types/redux-thunk": "^2.1.0",
"babel-eslint": "^8.2.2",
"babel-jest": "20.0.3",
"babel-preset-react-native": "2.0.0",
"detox": "^7.1.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-typescript": "^1.0.2",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-native": "^3.2.1",
"jest": "^22.4.2",
"react-moment": "^0.7.0",
"react-native-typescript-transformer": "^1.2.3",
"react-test-renderer": "16.0.0-alpha.12",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.8.0",
"typescript": "2.7.1"
},
"jest": {
"preset": "react-native"
},
"detox": {
"test-runner": "jest",
"runner-config": "e2e/config.json",
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/CliqzS.app",
"build": "xcodebuild -project ios/CliqzS.xcodeproj -scheme CliqzS -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build ONLY_ACTIVE_ARCH=NO | xcpretty",
"type": "ios.simulator",
"name": "iPhone 7"
},
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/CliqzS.app",
"build": "set -o pipefail && export CODE_SIGNING_REQUIRED=NO && export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -project ios/CliqzS.xcodeproj -scheme CliqzS -configuration Release -sdk iphonesimulator -derivedDataPath ios/build ONLY_ACTIVE_ARCH=NO | xcpretty",
"type": "ios.simulator",
"name": "iPhone 8 Plus"
}
}
}
}