-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
{
"name": "MobxDemo",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"build": "cd node_modules/react-native/third-party/glog-0.3.5/ && ../../scripts/ios-configure-glog.sh",
"test": "jest"
},
"dependencies": {
"axios": "^0.18.0",
"mobx": "^4.6.0",
"mobx-persist": "^0.4.1",
"mobx-react": "^5.4.2",
"react": "16.6.3",
"react-native": "0.57.8",
"react-native-gesture-handler": "^1.0.12",
"react-native-linear-gradient": "^2.5.3",
"react-native-snap-carousel": "^3.7.5",
"react-native-splash-screen": "^3.1.1",
"react-native-svg": "^6.3.1",
"react-native-svg-iconfont": "^1.0.4",
"react-native-vector-icons": "^6.1.0",
"react-navigation": "^3.0.8"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.2.2",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "23.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-react-native": "^4.0.1",
"eslint-plugin-flowtype": "^3.2.0",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.51.0",
"react-test-renderer": "16.6.3",
"standard": "^12.0.1"
},
"jest": {
"preset": "react-native"
},
"standard": {
"parser": "babel-eslint",
"plugins": [
"flowtype"
]
}
}