-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.29 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
{
"name": "SonyChannelMobile",
"version": "0.10.0",
"private": true,
"scripts": {
"start": "react-native start",
"ios-open": "open ios/*.xcodeproj",
"ios": "react-native run-ios",
"android": "adb reverse tcp:1337 tcp:1337 && react-native run-android",
"lint": "eslint src test *.js",
"test": "jest",
"remotedev": "remotedev-debugger --injectserver",
"postinstall": "npm run remotedev && rndebugger-open",
"db": "node scripts/generateTimestampedContent.js"
},
"remotedev": {
"hostname": "localhost",
"port": 5678
},
"dependencies": {
"axios": "^0.17.1",
"chokidar": "^2.0.2",
"immutable": "^3.7.6",
"lodash": "^4.3.0",
"moment": "^2.20.1",
"prop-types": "^15.6.0",
"initials": "^2.1.5",
"react": "16.2.0",
"react-native": "^0.51.0",
"react-native-animatable": "^1.2.4",
"react-native-autocomplete-input": "^3.5.0",
"react-native-blur": "^3.2.2",
"react-native-device-info": "^0.16.0",
"react-native-fbsdk": "^0.7.0",
"react-native-linear-gradient": "^2.4.0",
"react-native-onesignal": "^3.1.0",
"react-native-orientation": "^3.1.3",
"react-native-push-notification": "^3.0.2",
"react-native-vector-icons": "^4.5.0",
"react-native-video": "^2.0.0",
"react-navigation": "^1.0.3",
"react-navigation-redux-helpers": "^1.0.1",
"react-redux": "^5.0.3",
"redux": "^3.3.1",
"redux-persist": "^5.9.1",
"redux-persist-transform-filter": "0.0.16",
"redux-thunk": "^2.0.1"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-remove-console": "^6.8.1",
"babel-polyfill": "^6.26.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest": "^22.0.0",
"react-native-debugger-open": "^0.3.15",
"react-test-renderer": "16.2.0",
"remote-redux-devtools": "^0.5.12",
"remotedev-rn-debugger": "^0.8.3"
},
"jest": {
"preset": "react-native",
"setupTestFrameworkScriptFile": "<rootDir>/jest.js",
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)/"
]
}
}