forked from erosson/freecbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.32 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
86
87
88
89
90
91
92
93
94
95
96
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"www": "serve www/public",
"start": "yarn _version && expo start",
"storybook": "yarn _version && EXPO_STORYBOOK=1 expo start --config storybook.config.js",
"lint": "bash -O globstar -c \"tslint src/**/*.{ts,tsx}\"",
"lint:prettier": "bash -O globstar -c \"prettier -l src/**/*.{ts,tsx} www/public/**/*.html\"",
"format": "bash -O globstar -c \"prettier --write src/**/*.{ts,tsx} www/public/**/*.html\"",
"test": "yarn lint && yarn lint:prettier && yarn _version && jest",
"_test": "jest",
"build:android": "expo build:android",
"build:ios": "expo build:ios",
"build:ios:dev": "expo build:ios --release-channel dev",
"publish:ios:dev": "expo publish --release-channel dev",
"//deploy": "don't publish by hand, this is for CI",
"deploy": "yarn _version && expo publish --non-interactive",
"_version": "bash -c \"./scripts/version.sh > .version.json\""
},
"dependencies": {
"@expo/vector-icons": "^12.0.0",
"@sentry/integrations": "^5.17.0",
"dayjs": "^1.10.4",
"expo": "^40.0.0",
"expo-analytics-segment": "~9.1.0",
"expo-constants": "~9.3.3",
"expo-haptics": "~8.4.0",
"expo-linking": "~2.0.1",
"expo-localization": "~9.1.0",
"expo-splash-screen": "~0.8.1",
"expokit": "37.0.0",
"i18n-js": "^3.8.0",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.21",
"prop-types": "^15.6.2",
"react": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz",
"react-native-autogrow-textinput": "^5.2.0",
"react-native-gesture-handler": "~1.8.0",
"react-native-pose": "^0.9.0",
"react-native-screens": "~2.15.2",
"react-native-snap-carousel": "^3.9.1",
"react-native-store-review": "^0.1.5",
"react-native-swiper": "^1.5.14",
"react-navigation": "^4.4.4",
"react-navigation-stack": "^1.7.3",
"safe-json-stringify": "^1.2.0",
"sentry-expo": "^2.1.2",
"tslib": "^2.1.0",
"typescript": "~4.2.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "~7.13.8",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-ondevice-knobs": "^5.3.25",
"@storybook/addon-ondevice-notes": "^5.3.23",
"@storybook/addon-storyshots": "^5.3.19",
"@storybook/cli": "^5.3.19",
"@storybook/react-native": "^5.3.25",
"@types/expo": "^33.0.1",
"@types/expo__vector-icons": "^9.0.1",
"@types/jest": "^25.2.3",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"babel-eslint": "^10.0.1",
"babel-preset-expo": "8.3.0",
"eslint": "^7.21.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-native-a11y": "^2.0.4",
"expo-cli": "^4.2.1",
"jest": "^26.6.3",
"jest-expo": "^40.0.0",
"prettier": "2.2.1",
"react-dom": "16.13.1",
"react-native-dotenv": "^0.2.0",
"react-native-typescript-transformer": "^1.2.11",
"serve": "^11.3.2",
"ts-jest": "^26.5.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.17.0",
"turtle-cli": "^0.23.5"
},
"xo": {
"parser": "babel-eslint",
"prettier": true,
"space": true,
"rules": {
"unicorn/filename-case": false,
"react/require-default-props": false
},
"extends": "xo-react"
},
"private": true
}