-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.57 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.57 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
{
"name": "Kort",
"version": "0.2.0",
"repository": "https://github.com/kort/kort-reloaded",
"license": "MIT",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest --verbose",
"lint": "eslint .",
"flow": "flow check ."
},
"dependencies": {
"buffer": "^4.6.0",
"events": "^1.1.0",
"flux": "^2.1.1",
"keymirror": "^0.1.1",
"react": "15.0.2",
"react-native": "0.26.3",
"react-native-button": "^1.4.2",
"react-native-drawer": "^1.16.7",
"react-native-google-signin": "0.6.0",
"react-native-i18n": "0.0.8",
"react-native-mapbox-gl": "4.1.1",
"react-native-modalbox": "^1.3.0",
"react-native-router-flux": "^3.26.15"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"babel-jest": "12.1.0",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.3.0",
"eslint-plugin-react-native": "^1.0.0",
"flow-bin": "^0.22.1",
"jest": "^12.1.1",
"jest-cli": "12.1.1",
"react-native-mock": "^0.2.3"
},
"jest": {
"scriptPreprocessor": "node_modules/babel-jest",
"preprocessCachingDisabled": true,
"verbose": true,
"globals": {
"__DEV__": true
},
"unmockedModulePathPatterns": [
"node_modules"
],
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
}
}