-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 3.03 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "mtgx",
"version": "0.0.1",
"private": true,
"scripts": {
"start-packager": "node node_modules/react-native/local-cli/cli.js start",
"post-install": "cd ios && pod install",
"ios": "react-native run-ios",
"android": "react-native run-android",
"log-ios": "react-native log-ios | grep -v __nw_connection_get_connected_socket_block_invoke",
"log-android": "react-native log-android",
"test": "echo OK",
"test:watch": "jest --watch",
"test:unit": "jest ./__tests__/unit/",
"test:integration": "jest ./__tests__/integration/",
"test-ci": "echo OK",
"ios:build": "bundle exec fastlane ios build",
"android:build": "bundle exec fastlane android build",
"commitizen": "git cz",
"update-snapshot": "jest -u -t snapshot",
"generate-coverage": "jest --coverage --silent --noStackTrace",
"update-coverage": "npm run generate-coverage && codeclimate-test-reporter < ./coverage/lcov.info",
"lint:check": "standard --verbose | snazzy",
"lint-fix": "standard --fix --verbose | snazzy",
"flow:check": "flow --show-all-errors",
"flow-install-libdefs": "flow-typed install"
},
"dependencies": {
"immutable": "^3.8.1",
"lodash": "^4.17.4",
"nachos-ui": "^0.1.2",
"prop-types": "^15.5.10",
"react": "next",
"react-dom": "next",
"react-native": "0.47.1",
"react-native-action-button": "^2.8.0",
"react-native-config": "0.6.0",
"react-native-firebase": "^2.1.2",
"react-native-i18n": "1.0.0",
"react-native-modal": "^3.1.0",
"react-native-navigation": "^1.1.194",
"react-native-vector-icons": "^4.3.0",
"react-redux": "^5.0.6",
"realm": "^1.10.3",
"redux": "^3.7.2",
"redux-form": "^7.0.3",
"redux-immutable": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "20.0.3",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-native": "2.1.0",
"codeclimate-test-reporter": "0.5.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "2.0.0",
"enzyme": "^2.9.1",
"eslint-plugin-flowtype": "^2.35.0",
"flow-bin": "0.49.1",
"flow-typed": "2.1.5",
"husky": "^0.14.3",
"jest": "20.0.4",
"jest-enzyme": "^3.8.0",
"react-test-renderer": "^15.6.1",
"snazzy": "7.0.0",
"standard": "10.0.3",
"validate-commit-msg": "^2.14.0"
},
"jest": {
"preset": "react-native",
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js",
"testMatch": [
"**/__tests__/**/*.test.js?(x)"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/"
]
},
"standard": {
"env": [
"jest"
],
"global": [
"__DEV__",
"fail"
],
"ignore": [
"flow-typed/"
],
"parser": "babel-eslint",
"plugins": [
"flowtype"
]
},
"rnpm": {
"assets": [
"./src/assets/fonts"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}