This repository has been archived by the owner on Jun 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.25 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
{
"name": "hkufui",
"version": "1.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start --reset-cache",
"locally": "NODE_ENV=locally npm start -- --reset-cache",
"build": "./scripts/build-android.sh",
"android": "./scripts/pre-android.sh && react-native run-android",
"ios": "react-native run-ios",
"ios-small": "react-native run-ios --simulator 'iPhone 4s'",
"ios-medium": "react-native run-ios --simulator 'iPhone 8'",
"ios-large": "react-native run-ios --simulator 'iPhone XS Max'",
"test": "jest && npm run lint",
"test-in-band": "jest --runInBand && npm run lint",
"lint": "eslint .",
"updateSnapshot": "jest --updateSnapshot"
},
"dependencies": {
"crypto-js": "^3.1.9-1",
"native-base": "^2.12.1",
"react": "^16.8.6",
"react-native": "^0.59.3",
"react-native-animatable": "^1.3.2",
"react-native-firebase": "^5.2.3",
"react-native-gesture-handler": "^1.1.0",
"react-native-linear-gradient": "^2.5.4",
"react-native-loading-placeholder": "^0.0.6",
"react-native-markdown-renderer": "^3.2.8",
"react-native-splash-screen": "^3.2.0",
"react-native-svg": "^9.3.7",
"react-navigation": "^3.6.1",
"react-redux": "^6.0.1",
"reduce-reducers": "^1.0.1",
"redux": "^4.0.1",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"timeago.js": "^4.0.0-beta.2"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-native": "^3.6.0",
"jest": "^24.7.0",
"metro-react-native-babel-preset": "^0.53.1",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"transformIgnorePatterns": [
"/node_modules/(?!native-base)/"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFilesAfterEnv": [
"<rootDir>/test/setup.js"
]
}
}