-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.83 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
{
"name": "WisdomTourApp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"semi": false,
"jsxBracketSameLine": true
},
"dependencies": {
"fbemitter": "^2.1.1",
"leancloud-storage": "^3.6.8",
"mobx": "^3.6.1",
"mobx-react": "^4.4.2",
"moment": "^2.20.1",
"react": "^16.3.0-alpha.1",
"react-native": "^0.52.2",
"react-native-amap-geolocation": "^0.3.0",
"react-native-amap3d": "^1.0.0-beta.1",
"react-native-camera": "^1.1.2",
"react-native-device-info": "^0.21.5",
"react-native-interactable": "^0.1.10",
"react-native-keyboard-aware-scroll-view": "^0.4.4",
"react-native-modal-datetime-picker": "^5.1.0",
"react-native-picker": "^4.3.5",
"react-native-simple-toast": "^0.0.8",
"react-native-swiper": "^1.5.13",
"react-navigation": "file:react-navigation",
"react-navigation-is-focused-hoc": "^1.1.1",
"urijs": "^1.19.1"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-jest": "22.4.1",
"babel-plugin-syntax-decorators": "^6.13.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"jest": "22.4.2",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"pretty-quick": "^1.4.1",
"react-test-renderer": "^16.3.0-alpha.1"
},
"jest": {
"preset": "react-native"
}
}