forked from kimjson/whatssub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.94 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "whatssub-mobile",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"build": "rm -rf ./dist && tsc",
"codecov": "codecov",
"tsc": "tsc",
"start": "tsc -w & expo start",
"debug": "open 'rndebugger://set-debugger-loc?host=localhost&port=19001' && expo start",
"production": "expo start --no-dev",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "node node_modules/jest/bin/jest.js",
"lint": "eslint src storybook --ext .ts,.tsx,.js,.jsx",
"cp:config": "cp config.sample.ts config.ts",
"storybook": "start-storybook -p 7007"
},
"private": true,
"version": "0.0.0",
"description": "Expo starter from dooboo-cli.",
"author": "hyochan <[email protected]>",
"rnpm": {
"assets": [
"assets/fonts/SpoqaHanSans"
]
},
"license": "dooboolab",
"dependencies": {
"@apollo/react-hooks": "^3.0.0",
"apollo-boost": "^0.4.3",
"apollo-link-context": "^1.0.18",
"apollo-link-ws": "^1.0.18",
"apollo-utilities": "^1.3.2",
"dooboo-native-widgets": "^0.2.8",
"expo": "^34.0.4",
"expo-app-auth": "^6.0.0",
"expo-constants": "^6.0.0",
"expo-facebook": "^6.0.0",
"expo-font": "^6.0.1",
"expo-google-sign-in": "^6.0.0",
"expo-localization": "^6.0.0",
"graphql": "^14.4.2",
"i18n-js": "^3.3.0",
"jest": "^24.8.0",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"react": "16.8.6",
"react-apollo": "^3.0.0",
"react-dom": "^16.8.6",
"react-native": "https://github.com/expo/react-native/archive/sdk-34.0.0.tar.gz",
"react-native-animatable": "^1.3.2",
"react-native-gesture-handler": "^1.3.0",
"react-native-picker-scrollview": "https://github.com/JongtaekChoi/react-native-picker-scrollview.git",
"react-native-svg-charts": "^5.3.0",
"react-native-web": "^0.11.5",
"react-navigation": "^3.11.1",
"sentry-expo": "^1.13.0",
"styled-components": "^4.3.2",
"subscriptions-transport-ws": "^0.9.16"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-runtime": "7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@storybook/addon-actions": "^5.1.10",
"@storybook/addon-knobs": "^5.1.10",
"@storybook/addon-links": "^5.1.10",
"@storybook/addon-ondevice-knobs": "^5.1.10",
"@storybook/addon-ondevice-notes": "^5.1.10",
"@storybook/addons": "^5.1.10",
"@storybook/react-native": "^5.1.10",
"@storybook/react-native-server": "^5.1.10",
"@storybook/theming": "^5.1.10",
"@testing-library/react-native": "^4.0.7",
"@types/expo": "^32.0.13",
"@types/graphql": "^14.2.3",
"@types/jest": "^24.0.17",
"@types/js-cookie": "^2.2.2",
"@types/lodash": "^4.14.136",
"@types/react": "^16.8.24",
"@types/react-native": "0.60.3",
"@types/react-native-svg-charts": "^5.0.2",
"@types/react-test-renderer": "^16.8.3",
"@types/styled-components": "^4.1.18",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"apollo-link-mock": "^1.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"babel-preset-expo": "^5.2.0",
"babel-preset-react-native": "4.0.1",
"codecov": "^3.5.0",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.0",
"jest-expo": "^34.0.0",
"jest-expo-ts": "^22.0.1",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "16.8.6",
"ts-jest": "^24.0.2",
"tslib": "^1.10.0",
"typescript": "^3.5.3"
}
}