-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.91 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
{
"name": "AppFramework",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "eslint --ext .js ./src --fix",
"clean": "watchman watch-del-all && rm -rf node_modules && yarn install && npm start -- --reset-cache",
"android:release": "cd android && ./gradlew clean && ./gradlew assembleRelease && cd app/build/outputs/apk && cp app-release.apk ./AppFramework.apk && open .",
"warning-clean-up": "echo '\\033[1;33m Please, uninstall the app from your phone or destroy the emulator\n\\033[0m'",
"reinstall-npm-modules": "npm cache verify && rm -rf node_modules && yarn install",
"clear:ios": "cd ios && rm -rf build",
"android:gradle-clean": "cd android && ./gradlew clean",
"hyper-clean": "npm run warning-clean-up && npm run clear:ios && rm -rf $TMPDIR/react-* && npm run reinstall-npm-modules && npm run android:gradle-clean && react-native link"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "16.0.0",
"react-native": "0.51.0",
"react-native-elements": "^0.19.0",
"react-native-splash-screen": "^3.0.6",
"react-native-vector-icons": "^4.5.0",
"react-navigation": "^1.0.0-beta.23",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-persist": "^5.6.10",
"redux-thunk": "^2.2.0",
"seamless-immutable": "^7.1.2"
},
"devDependencies": {
"babel-eslint": "^8.1.2",
"babel-jest": "22.0.4",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-react-native": "^3.2.0",
"jest": "22.0.4",
"react-test-renderer": "16.0.0"
},
"jest": {
"preset": "react-native"
}
}