12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "name": "occ-mobile",
- "version": "0.0.1",
- "private": true,
- "scripts": {
- "start": "node node_modules/react-native/local-cli/cli.js start",
- "test": "jest",
- "prettier": "prettier --write --single-quote --no-semi --trailing-comma es5 --print-width 80 \"app/**/*.js\"",
- "lint": "eslint app",
- "format": "yarn prettier && yarn lint -- --fix",
- "precommit": "yarn format"
- },
- "dependencies": {
- "axios": "^0.18.0",
- "dva-core": "^1.1.0",
- "lodash": "^4.17.5",
- "moment": "^2.22.2",
- "native-echarts": "^0.4.0",
- "react": "^16.3.0-alpha.0",
- "react-native": "0.50.0",
- "react-native-animatable": "^1.2.4",
- "react-native-cli": "^2.0.1",
- "react-native-code-push": "^5.3.2",
- "react-native-collapsible": "^0.10.0",
- "react-native-device-info": "^0.24.3",
- "react-native-interactable": "^0.1.10",
- "react-native-keyboard-aware-scroll-view": "^0.4.4",
- "react-native-root-toast": "^3.0.1",
- "react-native-scrollable-tab-view": "^0.8.0",
- "react-native-splash-screen": "^3.1.1",
- "react-native-vector-icons": "^4.5.0",
- "react-native-webview": "^5.8.2",
- "react-navigation": "^1.5.11",
- "react-navigation-redux-helpers": "^1.1.1",
- "react-redux": "^5.0.7"
- },
- "devDependencies": {
- "babel-eslint": "^8.2.2",
- "babel-jest": "^22.4.1",
- "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-babel": "^4.1.2",
- "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",
- "prettier": "^1.11.1",
- "react-test-renderer": "^16.3.0-alpha.0"
- },
- "jest": {
- "preset": "react-native"
- }
- }
|