-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.23 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.23 KB
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
{
"name": "NativeReactApp",
"version": "1.0.0",
"description": "React Native app powered by Baker",
"main": "index.js",
"engines": {
"node": ">=4.3"
},
"scripts": {
"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",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"android": "node node_modules/react-native/local-cli/cli.js run-android"
},
"dependencies": {
"immutable": "^3.8.1",
"react": "~15.3.0",
"react-native": "^0.32.0",
"react-native-navigation-redux-helpers": "^0.4.1",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-immutable": "^3.0.6",
"redux-saga": "^0.9.5",
"reselect": "^2.4.0"
},
"devDependencies": {
"babel-eslint": "^6.0.2",
"babel-polyfill": "^6.7.4",
"eslint": "^2.8.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^4.3.0",
"remote-redux-devtools": "^0.1.6"
}
}