-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
82 lines (82 loc) · 2.83 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
{
"name": "@cliqz/user-agent-ios",
"version": "3.0.0",
"description": "Cliqz User Agent for iOS",
"scripts": {
"update-content-blocker": "node ./scripts/update-content-blocker.js",
"start": "react-native start --reset-cache",
"build-detox": "detox build",
"build-user-scripts": "webpack --config webpack.config.js",
"test-detox": "detox test --take-screenshots all",
"lint": "tsc --noEmit && eslint --ext .js,.jsx,.ts,.tsx ./ReactNative/js",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-mobile/firefox-ios.git"
},
"license": "MPL-2.0",
"dependencies": {
"@cliqz/component-styles": "^0.5.0",
"@cliqz/component-types": "^0.7.1",
"@cliqz/component-ui-logo": "^0.5.4",
"@cliqz/component-ui-selectable-results": "^0.5.5",
"@cliqz/component-ui-snippet-generic": "^0.7.3",
"@cliqz/component-ui-snippet-news": "^0.7.0",
"@cliqz/component-ui-snippet-weather": "^0.7.4",
"@cliqz/indexeddbshim": "^4.1.2",
"@cliqz/url-parser": "^1.1.3",
"@react-native-community/netinfo": "^5.9.7",
"cliqz-logo-database": "^0.5.5",
"ghostery-common": "^1.2.14",
"glob-to-regexp": "^0.4.1",
"jsdom-jscore-rn": "^0.1.7",
"moment": "^2.24.0",
"page-metadata-parser": "1.1.4",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-native": "^0.63.3",
"react-native-fs": "^2.16.6",
"react-native-gifted-chat": "^0.13.0",
"react-native-sqlite-2": "^3.1.0",
"react-native-svg": "^12.1.0",
"react-native-swipe-list-view": "^2.3.0",
"readability": "mozilla/readability#b9f47bcc8d3c223cabe2dec6a42eeb3bd778d85c",
"tldts": "^5.0.3"
},
"devDependencies": {
"@babel/preset-env": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"@types/moment": "^2.13.0",
"@types/react": "^16.9.11",
"@types/react-native": "^0.60.22",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"babel-loader": "^8.0.6",
"detox": "^17.5.7",
"eslint": "^6.6.0",
"eslint-config-airbnb-typescript": "^6.3.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"lodash": "^4.17.21",
"metro-react-native-babel-preset": "^0.59.0",
"mocha": "^6.2.1",
"node-fetch": "^2.6.1",
"patch-package": "^6.2.2",
"typescript": "^3.7.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.6"
},
"detox": {
"configurations": {
"sim": {
"binaryPath": "builds/Build/Products/CI-iphonesimulator/UserAgent.app",
"build": "xcodebuild -workspace UserAgent.xcworkspace -scheme 'Cliqz' -configuration CI -sdk iphonesimulator -derivedDataPath builds",
"type": "ios.simulator",
"name": "iPhone 11"
}
},
"test-runner": "mocha"
}
}