-
Notifications
You must be signed in to change notification settings - Fork 249
/
package.json
74 lines (74 loc) · 2.17 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
71
72
73
74
{
"name": "mind-cast",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"build-android": "cd android && ./gradlew assembleRelease && cd .. && react-native run-android --variant=release",
"lint": "eslint '**/*.js'",
"lint:fix": "prettier-eslint '**/*.js' --write",
"start:clean": "react-native start --reset-cache",
"test": "jest --watch",
"flow": "flow"
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"dependencies": {
"axios": "^0.18.0",
"react": "16.6.3",
"react-native": "0.58.4",
"react-native-dotenv": "^0.2.0",
"react-native-fast-image": "^5.1.2",
"react-native-fs": "2.13.2",
"react-native-gesture-handler": "^1.0.16",
"react-native-linear-gradient": "^2.5.3",
"react-native-side-menu": "^1.1.3",
"react-native-splash-screen": "^3.2.0",
"react-native-swipeout": "^2.3.6",
"react-native-vector-icons": "^6.3.0",
"react-native-video": "^4.4.0",
"react-navigation": "^3.3.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-saga": "^1.0.1",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-plugin-root-import": "^6.1.0",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-babel-plugin-root-import": "^1.1.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-native": "^3.6.0",
"flow": "^0.2.3",
"flow-bin": "^0.92.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.3",
"metro-react-native-babel-preset": "0.51.1",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"reactotron-react-native": "^2.1.5",
"reactotron-redux": "^2.1.3",
"reactotron-redux-saga": "^4.0.0"
}
}