-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.01 KB
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
{
"name": "ditto",
"version": "2.0.0",
"private": false,
"license": "GPL-3.0-or-later",
"scripts": {
"and": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"bi": "npx react-native bundle --entry-file=index.js --platform=ios --dev=false --bundle-output ios/main.jsbundle --assets-dest=ios",
"web": "cd web && webpack-dev-server",
"build:web": "cd web && webpack",
"beta": "./fastlane/release.sh"
},
"dependencies": {
"@eva-design/eva": "^2.0.0",
"@react-native-community/async-storage": "^1.12.0",
"@react-native-community/cameraroll": "^4.0.0",
"@react-native-community/clipboard": "^1.2.3",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/native": "^5.7.3",
"@react-navigation/stack": "^5.9.0",
"@rn-matrix/core": "^0.0.29",
"@ui-kitten/components": "^5.0.0",
"@ui-kitten/eva-icons": "^5.0.0",
"color": "^3.1.2",
"debug": "^4.2.0",
"moment": "^2.27.0",
"node-libs-react-native": "^1.2.0",
"observable-hooks": "^3.1.2",
"react": "16.13.1",
"react-dom": "^16.13.1",
"react-native": "0.63.2",
"react-native-actions-sheet": "^0.3.5",
"react-native-gesture-handler": "^1.8.0",
"react-native-haptic-feedback": "^1.10.0",
"react-native-image-pan-zoom": "^2.1.12",
"react-native-level-fs": "^3.0.1",
"react-native-localize": "^1.4.1",
"react-native-randombytes": "^3.0.0",
"react-native-reanimated": "^1.13.0",
"react-native-render-html": "^4.2.4",
"react-native-safe-area-context": "^3.1.7",
"react-native-screens": "^2.10.1",
"react-native-svg": "^12.1.0",
"react-native-svg-transformer": "^0.14.3",
"react-native-url-polyfill": "^1.2.0",
"react-native-web": "^0.13.9",
"react-native-webview": "^10.9.0",
"rn-fetch-blob": "^0.12.0",
"rxjs": "^6.6.2",
"striptags": "^3.1.1",
"tslint": "^6.1.3"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime": "^7.11.2",
"@react-native-community/eslint-config": "^2.0.0",
"@types/react": "^16.9.48",
"@types/react-native": "^0.63.10",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-react-native-web": "^0.13.9",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^7.7.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.4.2",
"metro-react-native-babel-preset": "^0.63.0",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "16.13.1",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"jest": {
"preset": "react-native"
},
"react-native": {
"fs": "react-native-level-fs"
},
"browser": {
"fs": "react-native-level-fs"
}
}