-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.52 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "Hemmo",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"bundle:android": "(cd android && ./gradlew assembleRelease) && cp android/app/build/outputs/apk/app-release.apk hemmo.apk",
"bundle:ios": "node ./node_modules/react-native/local-cli/cli.js bundle --platform ios --entry-file index.ios.js --bundle-output ios/Hemmo/main.jsbundle --dev=false --minify --verbose",
"test": "jest",
"lint": "eslint src",
"precommit": "lint-staged",
"prettier": "prettier --single-quote --trailing-comma all --write \"{,!(android|ios|node_modules)/**/}*.js*\""
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --single-quote --trailing-comma all --write",
"git add"
]
},
"dependencies": {
"event-emitter": "^0.3.5",
"immutable": "^3.8.1",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"react": "16.0.0-alpha.12",
"react-mixin": "^3.0.5",
"react-native": "0.45.1",
"react-native-animatable": "^1.2.3",
"react-native-audio-toolkit": "^1.0.5",
"react-native-background-fetch": "^2.0.8",
"react-native-background-task": "^0.2.1",
"react-native-collapsible": "^0.8.0",
"react-native-image-picker": "^0.26.3",
"react-native-keyboard-aware-scroll-view": "^0.3.0",
"react-native-keyboard-spacer": "^0.3.1",
"react-native-orientation": "git+https://github.com/yamill/react-native-orientation.git",
"react-native-permissions": "^1.0.0",
"react-native-progress": "^3.2.1",
"react-native-push-notification": "^3.0.0",
"react-native-vector-icons": "^4.2.0",
"react-navigation": "^1.0.0-beta.11",
"react-redux": "^5.0.5",
"react-timer-mixin": "^0.13.3",
"redux": "^3.7.1",
"redux-immutable": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-persist-immutable": "^4.3.0",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"standard-http-error": "^2.0.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "20.0.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-react-native": "2.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
"husky": "^0.14.3",
"jest": "20.0.4",
"lint-staged": "^4.0.2",
"prettier": "^1.5.3",
"react-test-renderer": "16.0.0-alpha.12"
},
"jest": {
"preset": "react-native"
}
}