-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.46 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.46 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "GeoEncoding",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"clean": "cd node_modules; find . -name .babelrc | grep -v packager | xargs rm",
"simpletest": "rm -rf ./node_modules/jest-cli/.haste_cache && jest",
"test": "rm -rf ./node_modules/jest-cli/.haste_cache && jest --verbose",
"coverage": "rm -rf ./node_modules/jest-cli/.haste_cache && jest --verbose --coverage",
"xxxtest": "mocha --reporter spec --compilers js:babel-core/register --recursive",
"test:watch": "npm test -- --watch",
"test-chrome": "node-debug --preload false --nodejs --harmony jest --runInBand",
"resetpkg": "node_modules/react-native/packager/packager.sh —reset-cache",
"postinstall": "rnpm link"
},
"dependencies": {
"@remobile/react-native-splashscreen": "1.0.3",
"lodash": "4.1.0",
"path": "^0.12.7",
"react-native": "0.17.0",
"react-native-animatable": "0.5.0",
"react-native-blur": "0.7.10",
"react-native-button": "1.2.1",
"react-native-code-push": "1.6.0-beta",
"react-native-fs": "^1.2.0",
"react-native-image-picker": "^0.14.2",
"react-native-maps": "0.2.3",
"react-native-orientation": "^1.14.0",
"react-native-overlay": "0.4.1",
"react-native-router-flux": "2.1.4",
"react-native-sglistview": "^0.1.3",
"react-native-spinkit": "0.0.6",
"react-native-sqlite-storage": "2.1.3",
"react-native-tabs": "0.0.6",
"react-native-vector-icons": "^1.1.1",
"react-native-video": "0.7.0",
"react-redux": "3.1.2",
"redux": "3.0.5",
"redux-logger": "2.3.1",
"redux-thunk": "1.0.3",
"underscore": "1.8.3"
},
"devDependencies": {
"babel-core": "6.4.5",
"indent": "0.0.1",
"inspect-react-element": "1.0.1",
"isomorphic-fetch": "2.2.1",
"nock": "5.5.0",
"jest-cli": "0.8.2",
"object-matches": "1.0.0",
"react": "0.14.7",
"react-addons-test-utils": "0.14.7",
"react-shallow-renderer-helpers": "1.2.0"
},
"jest": {
"scriptPreprocessor": "jestSupport/scriptPreprocess.js",
"testPathDirs": [
"app/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"testFileExtensions": [
"es6",
"spec.js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"unmockedModulePathPatterns": [
"__mocks__",
"isomorphic-fetch",
"nock",
"redux",
"redux-thunk",
"react-addons-test-utils",
"react"
]
}
}