ecency-mobile/package.json

85 lines
2.5 KiB
JSON
Raw Normal View History

2018-07-15 21:07:00 +03:00
{
2018-07-20 15:57:12 +03:00
"name": "eSteem",
"version": "0.0.1",
2018-07-15 21:07:00 +03:00
"private": true,
"scripts": {
2018-07-20 15:57:12 +03:00
"start": "node node_modules/react-native/local-cli/cli.js start",
2018-07-22 21:52:20 +03:00
"android": "react-native run-android",
"ios": "react-native run-ios",
2018-08-01 22:23:23 +03:00
"fmt": "prettier --config .prettierrc --write 'src/**/*.js*'",
"precommit": "lint-staged",
2018-07-15 21:07:00 +03:00
"test": "jest"
},
"dependencies": {
2018-09-04 17:12:04 +03:00
"@esteemapp/react-native-scrollable-tab-view": "^0.8.2",
"@esteemapp/react-native-tags": "^1.3.1",
2018-08-14 14:51:32 +03:00
"appcenter": "^1.7.1",
"appcenter-analytics": "^1.7.1",
"appcenter-crashes": "^1.7.1",
"crypto-js": "^3.1.9-1",
2018-09-23 12:35:38 +03:00
"dsteem": "^0.10.0",
2018-07-15 21:07:00 +03:00
"moment": "^2.22.2",
2018-09-04 17:12:04 +03:00
"native-base": "^2.8.0",
2018-07-20 15:57:12 +03:00
"react": "16.4.1",
"react-native": "0.56.0",
"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",
2018-08-16 03:22:23 +03:00
"react-native-markdown-editor": "^1.0.1",
"react-native-modal": "^6.5.0",
2018-08-16 03:22:23 +03:00
"react-native-modal-popover": "0.0.10",
2018-09-04 17:12:04 +03:00
"react-native-navigation": "^2.0.2519",
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-08-14 14:26:10 +03:00
"react-native-theming": "^1.0.16",
2018-07-20 15:57:12 +03:00
"react-native-vector-icons": "^4.6.0",
2018-08-02 19:41:35 +03:00
"react-redux": "^5.0.7",
2018-09-04 17:12:04 +03:00
"realm": "^2.15.3",
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",
"sc2-sdk": "^1.0.2"
2018-07-20 15:57:12 +03:00
},
"devDependencies": {
"babel-eslint": "^8.2.6",
2018-09-03 13:49:54 +03:00
"babel-jest": "23.4.2",
2018-07-20 15:57:12 +03:00
"babel-preset-react-native": "^5",
"eslint": "^5.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
2018-08-01 22:23:23 +03:00
"husky": "^0.14.3",
2018-09-03 13:49:54 +03:00
"jest": "23.5.0",
2018-08-01 22:23:23 +03:00
"lint-staged": "^7.2.0",
"prettier": "^1.14.0",
"react-test-renderer": "16.4.1",
"redux-devtools-extension": "^2.13.5",
"redux-logger": "^3.0.6"
2018-07-20 15:57:12 +03:00
},
"jest": {
2018-08-14 14:51:32 +03:00
"preset": "react-native",
"setupFiles": [
"<rootDir>/node_modules/appcenter/test/AppCenterMock.js",
"<rootDir>/node_modules/appcenter-analytics/test/AppCenterAnalyticsMock.js",
"<rootDir>/node_modules/appcenter-crashes/test/AppCenterCrashesMock.js"
]
2018-07-20 15:57:12 +03:00
},
"rnpm": {
"assets": [
"./src/assets/Fonts"
]
2018-08-01 22:23:23 +03:00
},
"lint-staged": {
"src/**/*.js*": [
"prettier --write",
"git add"
]
2018-07-15 21:07:00 +03:00
}
2018-09-14 00:22:37 +03:00
}