forked from osdio/noder-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.24 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.24 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "noder",
"version": "1.0.0",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"android": "node node_modules/react-native/local-cli/cli.js run-android",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"log": "adb logcat *:S ReactNative:V ReactNativeJS:V",
"build-ios": "react-native unbundle --entry-file index.ios.js --platform ios --dev false",
"build-android": "cd android && ./gradlew assembleRelease && cd ..",
"checkversion": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json",
"postinstall": "npm run checkversion",
"push-android": "code-push release-react Noder android --deploymentName Staging",
"push-ios": "code-push release-react Noder ios --deploymentName Staging",
"push-android-prod": "code-push release-react Noder android --deploymentName Production",
"push-ios-prod": "code-push release-react Noder ios --deploymentName Production",
"push-key": "code-push deployment ls Noder -k"
},
"dependencies": {
"flux-standard-action": "^0.6.1",
"lodash": "^4.11.1",
"markdown": "0.5.0",
"moment": "^2.12.0",
"query-string": "^4.1.0",
"react": "^0.14.8",
"react-addons-pure-render-mixin": "^15.0.1",
"react-native": "^0.24.0",
"react-native-barcodescanner": "^1.0.1",
"react-native-blur": "^0.7.11",
"react-native-button": "^1.4.2",
"react-native-camera": "git+https://github.com/lwansbrough/react-native-camera.git",
"react-native-code-push": "^1.10.2-beta",
"react-native-html-render": "^1.0.3",
"react-native-scrollable-tab-view": "^0.4.1",
"react-native-vector-icons": "^1.3.4",
"react-redux": "^4.4.5",
"redux": "^3.4.0",
"redux-actions": "^0.9.1",
"redux-logger": "^2.6.1",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.0.1"
},
"devDependencies": {
"coffee-script": "^1.9.2",
"dev-ip": "^1.0.1",
"eslint": "^2.7.0",
"eslint-plugin-react": "^4.2.3",
"gulp": "^3.9.1",
"gulp-replace": "^0.5.4",
"gulp-util": "^3.0.4",
"react-native-cli": "^0.2.0",
"redux-devtools": "^3.2.0",
"run-sequence": "^1.1.0"
},
"devEngines": {
"node": ">= 4.x",
"npm": ">= 3.x"
},
"bundleId": "org.reactjs.native.example.noder"
}