This repository was archived by the owner on Sep 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.42 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.42 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
61
62
63
64
65
66
67
68
{
"name": "bolt-starter",
"version": "1.0.1",
"description": "Rapid starter for your next React Native project",
"license": "MIT",
"homepage": "https://github.com/tiaanduplessis/bolt-starter",
"bugs": "https://github.com/tiaanduplessis/bolt-starter/issues",
"repository": {
"type": "git",
"url": "https://github.com/tiaanduplessis/bolt-starter"
},
"keywords": [
"react-native",
"bolt-starter"
],
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"pretest": "npm run lint",
"test": "jest",
"test:watch": "npm test -- --watch",
"lint": "standard --verbose | snazzy",
"lint:fix": "standard --fix --verbose | snazzy",
"precommit": "npm test",
"ios:xcode": "open ios/MyApp.xcworkspace",
"ios:bundle": "node ./node_modules/react-native/local-cli/cli.js bundle --platform ios --entry-file index.ios.js --bundle-output ios/PepperoniAppTemplate/main.jsbundle --dev=false --minify --verbose",
"clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && npm cache clean",
"android:clean": "cd android/ && ./gradlew clean && cd .. && react-native run-android",
"android:build": "cd android && ./gradlew assembleRelease",
"android:install": "cd android && ./gradlew assembleRelease && ./gradlew installRelease",
"android:devices": "$ANDROID_HOME/platform-tools/adb devices",
"android:logcat": "$ANDROID_HOME/platform-tools/adb logcat *:S ReactNative:V ReactNativeJS:V",
"notes": "notes -s src/"
},
"dependencies": {
"lodash": "^4.17.4",
"mobx": "^3.1.7",
"mobx-react": "^4.1.3",
"react": "~15.4.0",
"react-native": "0.42.0",
"react-native-animatable": "^1.1.0",
"react-native-code-push": "latest",
"react-native-device-info": "^0.10.1",
"react-native-elements": "^0.10.0",
"react-native-keyboard-spacer": "^0.3.1",
"react-native-vector-icons": "^4.0.0",
"react-navigation": "^1.0.0-beta.7"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "19.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-react-native": "1.9.1",
"babel-preset-react-native-stage-0": "^1.0.1",
"code-notes": "^1.0.4",
"husky": "^0.13.2",
"jest": "19.0.2",
"react-test-renderer": "~15.4.0",
"snazzy": "^6.0.0",
"standard": "^9.0.0"
},
"jest": {
"preset": "react-native"
},
"standard": {
"parser": "babel-eslint"
}
}