-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·95 lines (95 loc) · 3.12 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
{
"name": "sns",
"version": "1.0.0",
"private": true,
"devDependencies": {
"babel-eslint": "8.2.2",
"babel-preset-react-native-stage-0": "1.0.1",
"eslint": "4.18.2",
"eslint-plugin-flowtype": "2.46.1",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.7.0",
"eslint-plugin-react-native": "3.2.1",
"flow-bin": "0.67.1",
"flow-typed": "2.3.0",
"husky": "0.14.3",
"jest-expo": "25.1.0",
"pre-commit": "1.2.2",
"prettier": "1.11.1",
"react-test-renderer": "16.2.0"
},
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "yarn jest && flow && eslint .",
"jest": "node node_modules/jest/bin/jest.js",
"precommit": "yarn test",
"lint": "eslint . --ext js index.js",
"lint-fix": "eslint --fix . --ext js index.js"
},
"pre-commit": [
"lint"
],
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!(react-native|lottie-react-native|expo|react-native-maps|react-native-svg|react-native-branch|native-base-shoutem-theme|react-native-easy-grid|react-native-drawer|react-native-vector-icons|react-native-keyboard-aware-scroll-view|react-navigation|native-base|@expo|react-native-scrollable-tab-view)/)"
]
},
"prettier": {
"semi": false,
"printWidth": 120
},
"dependencies": {
"apollo-boost": "0.1.2",
"apollo-cache-inmemory": "^1.1.12",
"apollo-client": "^2.2.8",
"apollo-link": "^1.2.1",
"apollo-link-error": "^1.0.7",
"apollo-link-http": "^1.5.3",
"apollo-link-state": "^0.4.1",
"apollo-link-ws": "^1.0.7",
"axios": "^0.18.0",
"graphql": "0.13.1",
"immutability-helper": "2.6.6",
"lodash": "4.17.5",
"lottie-react-native": "^2.3.2",
"moment": "^2.22.1",
"native-base": "2.3.10",
"prop-types": "15.6.1",
"react": "16.2.0",
"react-apollo": "2.0.4",
"react-native": "0.51.0",
"react-native-app-intro-slider": "0.2.4",
"react-native-fbsdk": "0.7.0",
"react-native-icon-badge": "^1.1.3",
"react-native-image-crop-picker": "^0.20.1",
"react-native-keyboard-aware-scroll-view": "0.4.4",
"react-native-linear-gradient": "^2.4.0",
"react-native-loading-spinner-overlay": "0.5.2",
"react-native-modal": "^6.0.0",
"react-native-modal-dropdown": "^0.6.2",
"react-native-orientation": "3.1.3",
"react-native-pagination": "^1.2.8",
"react-native-parallax-header": "^1.0.6",
"react-native-parallax-scroll-view": "^0.21.0",
"react-native-popover": "^0.2.0",
"react-native-popover-tooltip": "^1.1.4",
"react-native-responsive-dimensions": "1.0.2",
"react-native-simple-radio-button": "^2.7.1",
"react-native-splash-screen": "3.0.6",
"react-navigation": "1.5.7",
"react-navigation-redux-helpers": "1.0.3",
"react-redux": "5.0.7",
"redux": "3.7.2",
"redux-form": "7.3.0",
"redux-thunk": "2.2.0",
"rxjs": "^5.5.8",
"socket.io-client": "^2.1.1",
"subscriptions-transport-ws": "^0.9.8",
"validator": "9.4.1"
}
}