-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
71 lines (71 loc) · 2.7 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
{
"name": "MDCApp",
"version": "0.0.1",
"private": true,
"scripts": {
"postinstall": "remotedev-debugger",
"start": "node node_modules/react-native/local-cli/cli.js start",
"eslint": "eslint",
"test": "jest",
"eject-native-base": "node node_modules/native-base/ejectTheme.js",
"test-bundle": "react-native bundle --dev false --platform android --entry-file index.android.js --bundle-output ./android/app/build/intermediates/assets/debug/index.android.bundle --assets-dest ./android/app/build/intermediates/res/merged/debug",
"test-build": "cd android && ./gradlew clean && ./gradlew assembleDebug",
"prod-bundle": "react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output ./android/app/src/main/assets/index.android.bundle --assets-dest ./android/app/src/main/res/merged/release",
"prod-build": "cd android && ./gradlew assembleRelease"
},
"dependencies": {
"babel-core": "^6.0.0",
"color": "~0.11.1",
"firebase": "^4.6.1",
"moment": "^2.13.0",
"native-base": "^2.3.2",
"random-string": "^0.2.0",
"rc-input-number": "^3.6.8",
"re-base": "^3.0.5",
"react": "16.0.0-alpha.12",
"react-native": "0.49.3",
"react-native-audio": "https://github.com/jsierles/react-native-audio.git",
"react-native-audio-toolkit": "git+https://github.com/futurice/react-native-audio-toolkit.git",
"react-native-audiowaveform": "https://github.com/erik-ilyin/react-native-audiowaveform.git",
"react-native-collapsible": "^0.9.0",
"react-native-fetch-blob": "^0.10.8",
"react-native-img-cache": "^1.5.2",
"react-native-modalbox": "^1.3.4",
"react-native-navigation-redux-helpers": "^0.5.0",
"react-native-orientation": "^3.1.0",
"react-native-progress": "^3.4.0",
"react-native-progress-bar-classic": "^1.2.1",
"react-native-progress-circle": "^2.0.0",
"react-native-router-flux": "^4.0.0-beta.21",
"react-native-scrollable-tab-view": "^0.6.0",
"react-native-sound": "^0.10.4",
"react-native-vector-icons": "^4.4.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-form": "^7.1.1",
"redux-persist": "^3.2.2",
"redux-thunk": "^2.2.0",
"remote-redux-devtools": "^0.3.3"
},
"devDependencies": {
"babel-jest": "21.2.0",
"babel-preset-react-native": "4.0.0",
"chai": "^3.5.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"eslint-plugin-react-native": "^2.0.0",
"jest": "21.2.1",
"jest-react-native": "16.1.0",
"mocha": "^2.5.3",
"react-test-renderer": "16.0.0-beta.5",
"remote-redux-devtools-on-debugger": "^0.4.6",
"remotedev-server": "^0.1.2"
},
"jest": {
"preset": "react-native"
}
}