-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 2.85 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "logoguesser",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"eslint-fix": "eslint src/ --fix --ext .jsx --ext .js"
},
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint src/ --fix --ext .jsx --ext .js"
]
},
"husky": {
"hooks": {
"pre-commit": "cross-env NODE_ENV=production lint-staged"
}
},
"dependencies": {
"axios": "^0.19.0",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-native": "0.61.1",
"react-native-axios": "^0.17.1",
"react-native-ratings": "^6.5.0",
"react-native-remote-svg": "^2.0.6",
"react-native-render-html": "^4.1.2",
"react-native-svg": "^9.9.5",
"react-native-svg-image": "^2.0.1",
"react-native-svg-uri": "^1.2.3",
"react-native-vector-icons": "^6.6.0",
"react-native-webview": "^7.2.7",
"rn-fetch-blob": "^0.10.15"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/preset-env": "^7.6.0",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^0.0.5",
"babel-eslint": "10.0.2",
"babel-jest": "^24.9.0",
"babel-plugin-inline-import": "^3.0.0",
"cross-env": "^6.0.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.2.0",
"eslint-config-react-app": "^5.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "2.2.1",
"eslint-plugin-flowtype": "3.13.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lint-staged": "^9.2.5",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "16.9.0"
},
"jest": {
"preset": "react-native"
},
"babel": {
"presets": [
"@babel/preset-env",
"module:metro-react-native-babel-preset"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
[
"babel-plugin-inline-import",
{
"extensions": [
".svg"
]
}
]
]
}
}