This repository has been archived by the owner on Apr 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.15 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
{
"name": "github-gist",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "eslint '*.js' '**/*.js' --fix",
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "node node_modules/jest/bin/jest.js",
"android-dev": "ENVFILE=.env.dev react-native run-android",
"android-staging": "ENVFILE=.env.staging react-native run-android",
"android-prod": "ENVFILE=.env.prod react-native run-android",
"build-android-prod": "export ENVFILE=.env.prod && cd android && ./gradlew assembleRelease && cd .."
},
"jest": {
"preset": "react-native"
},
"dependencies": {
"axios": "^0.18.0",
"filesize": "^3.6.1",
"lodash": "^4.17.10",
"moment": "^2.22.1",
"parse-link-header": "^1.0.1",
"pluralize": "^7.0.0",
"prop-types": "^15.6.1",
"query-string": "^5.1.0",
"querystring": "^0.2.0",
"react": "16.6.3",
"react-native": "0.57.8",
"react-native-code-push": "^5.3.4",
"react-native-config": "0.11.7",
"react-native-elements": "^0.19.1",
"react-native-navbar": "^2.1.0",
"react-native-syntax-highlighter": "^2.0.0",
"react-native-vector-icons": "6.3.0",
"react-navigation": "^1.5.2",
"react-redux": "^5.0.6",
"react-syntax-highlighter": "^7.0.4",
"reactotron-react-native": "^1.14.0",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6",
"redux-persist": "^5.8.0",
"redux-saga": "^0.16.0",
"styled-components": "4.1.3",
"time-ago": "^0.2.1",
"url": "^0.11.0"
},
"devDependencies": {
"babel-eslint": "10.0.1",
"babel-plugin-functional-hmr": "^1.0.24",
"babel-plugin-root-import": "^6.0.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"eslint": "5.15.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-native": "^3.2.1",
"jest-react-native": "^18.0.0",
"react-test-renderer": "16.2.0"
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
}
}