-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.45 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.45 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
93
94
95
96
97
98
99
100
101
102
103
{
"name": "niche",
"version": "0.0.1",
"description": "Niche app",
"main": "index.js",
"scripts": {
"android": "react-native run-android",
"ios": "npm run pod-install && react-native run-ios",
"increment-build": "react-native-version --never-amend --increment-build && scripts/patch_version_ts.sh",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"pod-install": "cd ios && pod install"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^1.0.0",
"@types/elliptic": "^6.4.12",
"@types/jest": "^24.0.24",
"@types/mocha": "^7.0.2",
"@types/react-native": "^0.62.0",
"@types/react-native-sortable-list": "0.0.9",
"@types/react-native-vector-icons": "^6.4.5",
"@types/react-redux": "^7.1.7",
"@types/react-test-renderer": "16.9.2",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"assert": "^2.0.0",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.58.0",
"mocha": "^7.1.1",
"prettier": "^2.0.2",
"react-native-clean-project": "^3.3.0",
"react-native-version": "^4.0.0",
"react-test-renderer": "16.11.0",
"ts-jest": "^25.3.1",
"typescript": "^3.9.2"
},
"dependencies": {
"@merryjs/photo-viewer": "^3.1.4",
"@react-native-community/async-storage": "^1.9.0",
"@react-native-community/clipboard": "^1.2.2",
"@react-native-community/hooks": "^2.5.1",
"@react-native-community/masked-view": "^0.1.7",
"@react-navigation/bottom-tabs": "^5.2.7",
"@react-navigation/native": "^5.1.4",
"@react-navigation/stack": "^5.2.10",
"@reduxjs/toolkit": "^1.3.4",
"elliptic": "^6.5.2",
"js-sha3": "^0.8.0",
"node-libs-react-native": "^1.0.3",
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-camera": "^3.22.1",
"react-native-fs": "^2.16.6",
"react-native-gesture-handler": "^1.6.1",
"react-native-get-real-path": "git+https://github.com/Wraptime/react-native-get-real-path.git",
"react-native-global-props": "^1.1.5",
"react-native-image-picker": "^2.3.1",
"react-native-image-zoom-viewer": "^3.0.1",
"react-native-input-scroll-view": "^1.10.1",
"react-native-modal": "^11.5.6",
"react-native-orientation-locker": "^1.1.8",
"react-native-permissions": "^2.0.10",
"react-native-qrcode-scanner": "^1.4.0",
"react-native-qrcode-svg": "^6.0.3",
"react-native-reanimated": "^1.8.0",
"react-native-safe-area-context": "^0.7.3",
"react-native-safe-area-view": "^1.1.1",
"react-native-screens": "^2.4.0",
"react-native-securerandom": "^1.0.0-rc.0",
"react-native-sortable-list": "0.0.24",
"react-native-super-grid": "^3.2.0",
"react-native-svg": "^12.0.3",
"react-native-vector-icons": "^6.6.0",
"react-redux": "^7.2.0",
"redux-persist": "^6.0.0"
},
"author": "Felfele Foundation <hello@felfele.org>",
"license": "AGPL-3.0-or-later",
"jest": {
"preset": "react-native",
"testMatch": [
"**/test/**/*.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}