forked from rationally-app/mobile-application
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.2 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.2 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "APP_BUILD_VERSION=1 APP_BINARY_VERSION=dev START_STORYBOOK=false expo start",
"start:mock": "APP_BUILD_VERSION=1 APP_BINARY_VERSION=dev MOCK=true expo start",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"test:watch": "jest --watch",
"storybook": "APP_BUILD_VERSION=1 APP_BINARY_VERSION=dev START_STORYBOOK=true expo start",
"android": "APP_BUILD_VERSION=1 APP_BINARY_VERSION=dev expo start --android",
"ios": "APP_BUILD_VERSION=1 APP_BINARY_VERSION=dev expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"lint": "eslint . --ext .ts,.tsx,.mdx --max-warnings 0",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@types/lodash": "^4.14.161",
"date-fns": "^2.11.1",
"expo": "^38.0.0",
"expo-barcode-scanner": "~8.2.1",
"expo-camera": "~8.3.1",
"expo-constants": "~9.1.1",
"expo-crypto": "~7.0.0",
"expo-linear-gradient": "~8.2.1",
"expo-linking": "^1.0.3",
"expo-localization": "^8.2.1",
"expo-permissions": "~9.0.1",
"expo-updates": "^0.2.12",
"fp-ts": "^2.7.1",
"google-libphonenumber": "^3.2.13",
"io-ts": "^2.2.1",
"io-ts-reporters": "^1.0.0",
"io-ts-types": "^0.5.6",
"lodash": "^4.17.15",
"react": "16.11.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-38.0.2.tar.gz",
"react-native-gesture-handler": "~1.6.0",
"react-native-qrcode-svg": "^6.0.3",
"react-native-reanimated": "~1.9.0",
"react-native-screens": "~2.9.0",
"react-native-svg": "12.1.0",
"react-native-webview": "^10.9.0",
"react-navigation": "^4.1.0",
"react-navigation-drawer": "^2.5.0",
"react-navigation-stack": "^1.10.3",
"sentry-expo": "^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@storybook/addon-actions": "^5.3.9",
"@storybook/addon-links": "^5.3.9",
"@storybook/addons": "^5.3.9",
"@storybook/react-native": "^5.3.21",
"@testing-library/jest-native": "^3.1.0",
"@testing-library/react-hooks": "3.2.1",
"@testing-library/react-native": "^6.0.0",
"@types/date-fns": "^2.6.0",
"@types/google-libphonenumber": "^7.4.17",
"@types/i18n-js": "^3.0.3",
"@types/jest": "^26.0.7",
"@types/node": "^14.0.25",
"@types/react": "~16.9.41",
"@types/react-native": "~0.62.13",
"@types/testing-library__react-hooks": "3.2.0",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"babel-loader": "^8.0.6",
"babel-plugin-inline-dotenv": "^1.6.0",
"babel-preset-expo": "^8.2.3",
"dotenv": "^8.2.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^4.1.2",
"i18n-js": "^3.7.1",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"react-dom": "16.11.0",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "^16.12.0",
"typescript": "~3.9.5"
},
"private": true
}