forked from celo-org/celo-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 3.03 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
{
"name": "@celo/verifier",
"version": "1.0.0",
"author": "Celo",
"license": "Apache-2.0",
"private": true,
"scripts": {
"predev": "./scripts/pre-dev.sh",
"dev": "react-native run-android --appIdSuffix \"debug\"",
"dev:show-menu": "adb devices | grep '\t' | awk '{print $1}' | sed 's/\\s//g' | xargs -I {} adb -s {} shell input keyevent 82",
"dev:reload": "adb shell input text \"RR\"",
"dev:remote": "remotedev --hostname=localhost --port=8000",
"lint": "tslint -c tslint.json --project tsconfig.json",
"build": "tsc -p . --noEmit",
"start": "react-native start",
"start:android": "react-native run-android",
"start:ios": "react-native run-ios",
"test": "export TZ=UTC && jest --ci --silent --coverage --runInBand",
"test:verbose": "export TZ=UTC && jest --ci --verbose --runInBand",
"test:watch": "export TZ=UTC && node node_modules/jest/bin/jest.js --watch",
"pre-deploy": "./scripts/pre-deploy.sh"
},
"rnpm": {
"assets": [
"./fonts"
]
},
"dependencies": {
"@celo/react-components": "1.0.0",
"@celo/react-native-sms-retriever": "git+https://github.com/celo-org/react-native-sms-retriever#b88e502",
"@celo/utils": "0.1.9-dev",
"@react-native-community/async-storage": "^1.6.2",
"@react-native-community/netinfo": "^4.4.0",
"@segment/analytics-react-native": "^1.1.0-beta.2",
"@segment/analytics-react-native-firebase": "^1.1.0-beta.2",
"apollo-boost": "^0.3.1",
"apollo-cache-persist": "^0.1.1",
"bignumber.js": "^7.2.0",
"date-fns": "^2.0.0-alpha.27",
"graphql": "^14.1.1",
"i18next": "^19.0.2",
"react": "16.9.0",
"react-apollo": "^2.5.8",
"react-i18next": "^11.2.7",
"react-native": "^0.61.2",
"react-native-config": "https://github.com/luggit/react-native-config#89a602b",
"react-native-device-info": "^4.0.1",
"react-native-firebase": "5.5.6",
"react-native-fs": "^2.14.1",
"react-native-gesture-handler": "^1.5.2",
"react-native-languages": "^3.0.2",
"react-native-reanimated": "^1.3.0",
"react-native-restart-android": "^0.0.7",
"react-native-safe-area-context": "^0.5.0",
"react-native-screens": "^1.0.0-alpha.23",
"react-native-splash-screen": "^3.2.0",
"react-native-svg": "^9.11.1",
"react-navigation": "^4.0.10",
"react-navigation-stack": "^1.9.4",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-persist": "^6.0.0",
"web3-utils": "1.2.4"
},
"devDependencies": {
"@celo/typescript": "0.0.1",
"@types/enzyme": "^3.1.15",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/graphql": "^14.0.7",
"@types/react": "^16.8.19",
"@types/react-native": "^0.60.19",
"@types/react-test-renderer": "^16.9.0",
"babel-core": "7.0.0-bridge.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"metro-react-native-babel-preset": "^0.56.0",
"react-dom": "16.9.0",
"react-native-version": "^3.1.0",
"react-test-renderer": "16.9.0",
"replace": "^1.0.0"
},
"jest": {
"preset": "react-native"
}
}