-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (36 loc) · 1.37 KB
/
package.json
File metadata and controls
38 lines (36 loc) · 1.37 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
35
36
37
38
{"name": "FillYourDay",
"version": "0.0.1",
"private": true,
"config" : {
"rn" : "node_modules/react-native/local-cli/cli.js",
"envfile": "/tmp/envfile"
},
"scripts": {
"prod-ios": "npm run set-prod-ios && npm run run-ios",
"dev-ios": "echo '.env' > $npm_package_config_envfile && npm run run-ios",
"run-ios": "node $npm_package_config_rn run-ios",
"build-ios": "npm run set-prod-ios && node $npm_package_config_rn bundle --platform ios --dev false --entry-file index.ios.js --bundle-output iOS/main.jsbundle",
"prod-android": "npm run set-prod-android npm run dev-android",
"dev-android": "node $npm_package_config_rn run-android",
"build-android": "npm run set-prod-android node $npm_package_config_rn run-android --configuration Release",
"set-prod-ios": "echo '.env.prod' > $npm_package_config_envfile",
"set-prod-android": "ENVFILE=.env.prod"
},
"dependencies": {
"lodash": "4.17.2",
"moment": "2.17.1",
"react": "15.4.1",
"react-native": "0.39.2",
"react-native-config": "0.2.0",
"react-native-parallax-scroll-view": "0.19.0",
"react-native-router-flux": "3.37.0",
"react-native-vector-icons": "3.0.0",
"react-pure-render": "1.0.2",
"react-redux": "4.4.6",
"redux": "3.6.0",
"redux-act": "0.4.2",
"redux-act-async": "0.5.0",
"redux-logger": "2.7.4",
"redux-thunk": "2.1.0"
}
}