ecency-mobile/package.json

79 lines
2.6 KiB
JSON
Raw Normal View History

2018-07-15 21:07:00 +03:00
{
"name": "esteem",
2018-07-20 15:57:12 +03:00
"version": "0.0.1",
2018-07-15 21:07:00 +03:00
"private": true,
"scripts": {
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"test": "node node_modules/jest/bin/jest.js --watch",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --print-width=100 --single-quote --trailing-comma all --write \"{src,__tests__}/**/*.js\"",
"lint-staged": "lint-staged",
"clear": "watchman watch-del-all && rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-* && rm -rf node_modules/ && yarn cache clean && yarn install && yarn start -- --reset-cache"
2018-07-15 21:07:00 +03:00
},
"dependencies": {
"@babel/runtime": "^7.1.2",
2018-09-04 17:12:04 +03:00
"@esteemapp/react-native-scrollable-tab-view": "^0.8.2",
"@esteemapp/react-native-tags": "^1.3.1",
"crypto-js": "^3.1.9-1",
"dsteem": "^0.10.1",
2018-07-15 21:07:00 +03:00
"moment": "^2.22.2",
"native-base": "^2.8.1",
2018-10-08 08:08:32 +03:00
"react": "^16.5.0",
"react-native": "^0.57.1",
"react-native-extended-stylesheet": "^0.10.0",
"react-native-fast-image": "^4.0.14",
2018-08-19 20:53:16 +03:00
"react-native-html-renderer": "^1.0.0",
"react-native-keyboard-aware-scroll-view": "^0.7.2",
"react-native-linear-gradient": "^2.4.2",
2018-08-16 03:22:23 +03:00
"react-native-markdown-editor": "^1.0.1",
"react-native-modal": "^6.5.0",
"react-native-modal-dropdown": "^0.6.2",
2018-08-16 03:22:23 +03:00
"react-native-modal-popover": "0.0.10",
2018-08-14 18:14:16 +03:00
"react-native-restart": "0.0.6",
2018-08-16 03:22:23 +03:00
"react-native-slider": "^0.11.0",
2018-07-20 15:57:12 +03:00
"react-native-vector-icons": "^4.6.0",
2018-10-16 21:52:02 +03:00
"react-native-zss-rich-text-editor": "^1.1.0",
"react-navigation": "^2.17.0",
"react-navigation-redux-helpers": "^2.0.6",
2018-08-02 19:41:35 +03:00
"react-redux": "^5.0.7",
2018-10-08 08:08:32 +03:00
"realm": "^2.18.0",
2018-08-02 19:41:35 +03:00
"redux": "^4.0.0",
"redux-promise": "^0.6.0",
2018-08-02 19:41:35 +03:00
"redux-thunk": "^2.3.0",
2018-07-16 21:44:27 +03:00
"remarkable": "^1.7.1",
2018-09-11 15:39:52 +03:00
"rn-placeholder": "^1.2.0",
2018-10-06 06:33:03 +03:00
"steemconnect": "^2.0.0"
2018-07-20 15:57:12 +03:00
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-jest": "23.6.0",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.47.0",
"prettier": "^1.14.3",
"prettier-eslint": "^8.8.2",
"react-test-renderer": "16.5.0",
"redux-logger": "^3.0.6",
"redux-devtools-extension": "^2.13.5",
"lint-staged": "^7.2.0"
2018-08-01 22:23:23 +03:00
},
"lint-staged": {
"*.js": [
"yarn run lint:fix",
2018-08-01 22:23:23 +03:00
"git add"
]
},
"pre-commit": "lint-staged",
"jest": {
"preset": "react-native"
2018-07-15 21:07:00 +03:00
}
2018-09-14 00:22:37 +03:00
}