-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
142 lines (142 loc) · 5.17 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "feeds",
"version": "1.0.9",
"private": true,
"devDependencies": {
"@babel/core": "7.5.0",
"@babel/runtime": "7.5.1",
"@microsoft/tsdoc": "0.12.5",
"@types/base64-arraybuffer": "0.1.0",
"@types/deep-equal": "1.0.1",
"@types/elliptic": "6.4.5",
"@types/jest": "23.3.8",
"@types/react": "16.8.3",
"@types/react-native": "0.57.65",
"@types/react-native-restart": "0.0.0",
"@types/react-native-sortable-list": "0.0.7",
"@types/react-native-vector-icons": "6.4.1",
"@types/react-navigation": "2.13.7",
"@types/react-redux": "6.0.0",
"@types/react-test-renderer": "16.8.2",
"babel-jest": "24.6.0",
"detox": "12.1.3",
"esbuild": "^0.20.1",
"eslint": "5.15.3",
"form-data": "2.3.3",
"identicon.js": "2.3.3",
"jest": "24.6.0",
"jest-fetch-mock": "1.6.6",
"jest-serializer": "23.0.1",
"jetifier": "1.6.0",
"metro-react-native-babel-preset": "0.66.2",
"mocha": "6.2.1",
"mock-async-storage": "2.0.3",
"node-fetch": "2.6.1",
"react-native-asset": "1.1.2",
"react-native-debugger-open": "0.3.17",
"react-native-schemes-manager": "2.0.0",
"react-native-svg-transformer": "0.12.1",
"react-native-typescript-transformer": "1.2.10",
"react-native-version": "3.1.0",
"react-test-renderer": "16.8.3",
"ts-jest": "24.0.1",
"tslib": "1.9.3",
"tslint": "5.11.0",
"typescript": "4.7.4"
},
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"fix-androidx": "scripts/fix_androidx.sh",
"fix-xcode": "react-native-schemes-manager all",
"ios": "react-native run-ios",
"link": "react-native link",
"link-assets": "react-native-asset",
"test": "node node_modules/jest/bin/jest.js",
"watchTest": "node node_modules/jest/bin/jest.js --watch",
"check": "npm run tsc && npm run lint && npm run test && npm run check-versions",
"check-versions": "./scripts/cli.sh checkversions",
"extended-check": "npm run tsc && npm run lint && npm run test && cd android && ./gradlew assembleRelease",
"tsc": "tsc",
"lint": "tslint src/**/*.ts",
"build": "npm run clean && npm run tsc --",
"clean": "rm -rf build ios/build android/build",
"dist-clean": "rm -rf build ios/build android/build node_modules",
"build:android": "scripts/build_android_unsigned_release.sh",
"build:ios": "scripts/build_xcode_archive.sh feeds build CODE_SIGN_IDENTITY=\"\" CODE_SIGNING_REQUIRED=\"NO\" CODE_SIGN_ENTITLEMENTS=\"\" CODE_SIGNING_ALLOWED=\"NO\"",
"bundle:android": "react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res",
"e2e:build:ios": "detox build",
"e2e:ios": "detox test -c ios.sim.debug --cleanup",
"postversion": "react-native-version --never-amend && scripts/patch_version_ts.sh",
"postinstall": "npm run fix-androidx && npm run fix-xcode",
"increment-build": "react-native-version --never-amend --increment-build && scripts/patch_version_ts.sh",
"site-build": "./scripts/cli.sh && esbuild src/cli/html.ts --bundle --outfile=dist/feeds.js --global-name=feeds"
},
"dependencies": {
"@react-native-community/async-storage": "1.5.0",
"base-64": "0.1.0",
"base64-arraybuffer": "0.1.5",
"buffer": "5.2.1",
"deep-equal": "1.1.0",
"he": "1.2.0",
"node-libs-browser": "2.1.0",
"node-libs-react-native": "1.0.3",
"node-opml-parser": "1.0.0",
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-actions-sheet": "0.1.6",
"react-native-build-config": "0.3.1",
"react-native-camera": "3.17.0",
"react-native-device-info": "5.5.3",
"react-native-global-props": "1.1.5",
"react-native-markdown-display": "6.1.4",
"react-native-parse-html": "2.2.6",
"react-native-permissions": "2.0.9",
"react-native-picker-select": "6.3.4",
"react-native-qrcode-scanner": "1.3.1",
"react-native-qrcode-svg": "5.1.2",
"react-native-restart": "0.0.9",
"react-native-splash-screen": "3.2.0",
"react-native-super-grid": "3.1.2",
"react-native-svg": "9.5.1",
"react-native-util": "1.0.2",
"react-native-vector-icons": "6.6.0",
"react-native-xml2js": "1.0.3",
"react-navigation": "2.18.3",
"react-redux": "6.0.0",
"redux": "4.0.1",
"redux-persist": "5.10.0",
"redux-thunk": "2.3.0",
"reselect": "4.0.0",
"stream-browserify": "2.0.1",
"string_decoder": "1.1.1",
"url": "0.11.0",
"utf8-encoder": "1.0.1",
"util": "0.10.4",
"vm-browserify": "1.1.0"
},
"jest": {
"preset": "react-native"
},
"detox": {
"test-runner": "mocha",
"specs": "",
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/Felfele.app",
"build": "xcodebuild -project ios/Felfele.xcodeproj -scheme Felfele -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone 7"
}
}
},
"xcodeSchemes": {
"Release": [
"BetaRelease"
],
"Debug": [
"BetaDebug"
],
"projectDirectory": "ios"
}
}