-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.93 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
{
"name": "TheResistance",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@babel/cli": "^7.0.0-beta.34",
"@babel/core": "^7.0.0-beta.34",
"@babel/preset-env": "^7.0.0-beta.34",
"babel-eslint": "^8.0.3",
"babel-preset-react-native-stage-0": "^1.0.1",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-react-native": "^3.2.0",
"fs-extra": "^4.0.2",
"jest-expo": "^21.0.2",
"prettier-eslint-cli": "^4.7.0",
"react-test-renderer": "16.0.0-beta.5",
"replace-in-file": "^3.0.0"
},
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"tidy": "prettier-eslint --write \"{src,firebaseFunctions}/**/*.js\"",
"test": "node node_modules/jest/bin/jest.js --watch",
"deploy:functions": "yarn run package:functions; firebase deploy",
"package:functions": "babel firebaseFunctions --out-dir functions --copy-files --ignore firebaseFunctions/node_modules",
"postinstall": "rm ./node_modules/react-native/local-cli/core/fixtures/files/package.json; rm ./node_modules/react-native/local-cli/core/__fixtures__/files/package.json;",
"upload-to-test-flight": "cd ios; fastlane beta;"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"babel-preset-env": "^1.6.1",
"fbjs": "^0.8.16",
"firebase": "^4.9.1",
"is-object": "^1.0.1",
"json-style-converter": "^1.0.3",
"lodash": "^4.17.4",
"obj-to-query-string": "^1.1.1",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-native": "0.52.2",
"react-native-firebase": "^3.1.1",
"react-native-router-flux": "^4.0.0-beta.24",
"react-native-splash-screen": "^3.0.6",
"react-native-vector-icons": "^4.5.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"redux-saga-firebase": "^0.10.0",
"reselect": "^3.0.1"
},
"rnpm": {
"assets": [
"src/assets/fonts"
]
}
}