-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.16 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.16 KB
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
{
"name": "PanResponderExamples",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"coverage": "jest --coverage",
"clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && npm cache clean",
"force-clean": "npm run android:clean && rm -rf $TMPDIR/react-* && watchman watch-del-all && rm -rf ios/build && rm -rf node_modules/ && npm cache clean && npm i",
"android:clean": "cd android/ && ./gradlew clean",
"android:build": "cd android && ./gradlew clean && ./gradlew assembleRelease",
"android:install": "cd android && ./gradlew clean && ./gradlew assembleRelease && ./gradlew installRelease",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"lint-diff": "git diff --name-only --cached --relative | grep \\.js$ | xargs eslint",
"precommit": "npm run lint-diff"
},
"dependencies": {
"apisauce": "^0.14.3",
"change-case": "^3.0.2",
"lodash": "^4.17.5",
"prop-types": "^15.6.1",
"react": "16.3.1",
"react-native": "0.55.2",
"react-native-config": "^0.11.5",
"react-native-i18n": "^2.0.12",
"react-navigation": "^1.5.11",
"react-navigation-redux-helpers": "^1.0.5",
"react-redux": "^5.0.7",
"reactotron-apisauce": "^1.13.0",
"reactotron-react-native": "^1.14.0",
"reactotron-redux": "^1.13.0",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"seamless-immutable": "^7.1.3"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-jest": "22.4.3",
"babel-plugin-import-glob": "^2.0.0",
"babel-preset-react-native": "^4.0.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.4.0",
"husky": "^0.14.3",
"jest": "22.4.3",
"jest-react-native": "^18.0.0",
"prettier": "^1.12.0",
"prettier-eslint": "^8.8.1",
"react-test-renderer": "16.3.1"
},
"jest": {
"preset": "react-native"
}
}