-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.98 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
{
"name": "Stop2",
"version": "0.0.1",
"private": true,
"scripts": {
"test": "jest",
"build": "(cd android/ && ./gradlew assembleDebug)",
"start": "node node_modules/react-native/local-cli/cli.js start",
"bundle-android": "react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --sourcemap-output android/app/src/main/assets/index.android.map --assets-dest android/app/src/main/res/",
"apk": "(cd android/ && ./gradlew assembleRelease)"
},
"dependencies": {
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"react": "~15.3.2",
"react-native": "^0.34.1",
"react-native-awesome-button": "https://github.com/STOP2/react-native-awesome-button.git",
"react-native-beacons-android": "^2.1.0",
"react-native-bluetooth-serial": "^0.1.6",
"react-native-fcm": "^2.3.2",
"react-native-localization": "^0.1.17",
"react-native-router-flux": "^3.35.0",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-jest": "^16.0.0",
"babel-polyfill": "^6.16.0",
"babel-preset-react-native": "^1.9.0",
"eslint": "^3.8.1",
"eslint-plugin-react": "^6.4.1",
"eslint-plugin-react-native": "^2.0.0",
"jest": "^16.0.2",
"jest-react-native": "^16.0.0",
"react-test-renderer": "^15.3.2",
"redux-mock-store": "^1.2.1"
},
"jest": {
"preset": "jest-react-native",
"collectCoverage": true,
"verbose": true,
"setupFiles": [
"./config/jest/globalFetch.js"
],
"modulePathIgnorePatterns": [
"node_modules/react-native/node_modules/"
],
"collectCoverageFrom": [
"app/**/*.{js,jsx}",
"!app/{config,store,pages,containers}/*",
"!app/reducers/index.js"
]
},
"rnpm": {
"assets": [
"assets"
]
}
}