-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.66 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
{
"name": "journey",
"version": "0.0.1",
"private": true,
"scripts": {
"lint": "eslint ./*.js ./js/ ./__test__/",
"fix": "eslint ./*.js ./js/ ./__test__/ --fix",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"pretest": "npm run lint",
"open-android-studio": "open -a /Applications/Android\\ Studio.app/ ."
},
"dependencies": {
"babel-eslint": "^7.1.1",
"journey-data": "mozilla-magnet/journey-data",
"moment": "^2.17.1",
"react": "~15.4.0-rc.4",
"react-native": "0.40.0",
"react-native-heading": "git://github.com/arcturus/react-native-heading.git",
"react-native-maps": "^0.13.0",
"react-native-share": "^1.0.18",
"react-native-viewpager": "^0.2.13",
"react-redux": "^5.0.1",
"realm": "^0.15.4",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"eslint": "^3.14.0",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-react-native": "^2.2.1",
"jest": "18.1.0",
"react-test-renderer": "~15.4.0-rc.4"
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"/node_modules/",
"./__tests__/setup.js"
],
"setupFiles": [
"./__tests__/setup.js"
]
},
"rnpm": {
"assets": [
"./js/fonts"
]
},
"repository": {
"url": "git+ssh://[email protected]/mozilla-magnet/journey.git",
"type": "git"
},
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla-magnet/journey/issues"
},
"homepage": "https://github.com/mozilla-magnet/journey#readme"
}