forked from LeoLeBras/react-native-redux-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.67 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
{
"name": "react-native-redux-starter-kit",
"version": "1.0.0",
"description": "Get started with React Native and Redux.",
"repository": {
"type": "git",
"url": "https://github.com/LeoLeBras/react-native-redux-starter-kit"
},
"author": "Léo LE BRAS <leo.lebrasf@gmail.com> (http://github.com/LeoLeBras)",
"license": "MIT",
"bugs": {
"url": "https://github.com/LeoLeBras/react-native-redux-starter-kit/issues"
},
"scripts": {
"start": "node_modules/react-native/packager/packager.sh",
"build-ios": "node node_modules/react-native/local-cli/cli.js bundle --entry-file index.ios.js --bundle-output iOS/main.jsbundle --platform 'ios' --assets-dest ./ --dev false --reset-cache",
"build-android": "node node_modules/react-native/local-cli/cli.js bundle --entry-file index.android.js --bundle-output iOS/main.jsbundle --platform 'android' --assets-dest ./ --dev false --reset-cache",
"reactotron": "node_modules/.bin/reactotron",
"android-setup-port": "adb reverse tcp:8081 tcp:8080",
"flow:check": "node bin/flow-check"
},
"engines": {
"node": ">=4",
"npm": ">=2 <4"
},
"dependencies": {
"apisauce": "^0.1.3",
"immutable": "^3.8.1",
"react": "15.0.2",
"react-native": "^0.26.1",
"react-native-router-flux": "^3.26.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-thunk": "^2.0.1"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"babel-preset-react-native-stage-0": "^1.0.1",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.0.1",
"reactotron": "^0.6.1"
}
}