forked from paralect/react-native-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "react-native-starter",
"version": "0.0.1",
"description": "React-native starter",
"main": "src/App.jsx",
"private": false,
"author": "Paralect",
"license": "MIT",
"keywords": [
"react-native",
"paralect"
],
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"eslint": "eslint --ext js --ext jsx ."
},
"dependencies": {
"@react-native-community/netinfo": "3.2.1",
"axios": "0.19.0",
"i18n-js": "3.2.2",
"prop-types": "15.7.2",
"react": "16.8.0",
"react-native": "0.59.8",
"react-native-config": "0.11.7",
"react-native-gesture-handler": "1.2.1",
"react-native-localize": "1.1.2",
"react-navigation": "3.11.0",
"react-redux": "7.0.3",
"redux": "4.0.1",
"redux-thunk": "2.3.0"
},
"devDependencies": {
"@paralect/eslint-config": "1.0.0",
"babel-eslint": "10.0.1",
"babel-plugin-module-resolver": "3.2.0",
"eslint": "5.16.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.13.0",
"metro-react-native-babel-preset": "0.53.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paralect/react-native-starter.git"
}
}