-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.94 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "sharecalculator",
"version": "0.0.2",
"private": true,
"scripts": {
"android-emulator": "emulator -avd Nexus_5X_API_23",
"android": "react-native run-android",
"test": "jest --collectCoverage",
"test-watch": "jest --watch",
"lint": "eslint .",
"android-dev-release": "cd android && ./gradlew assembleRelease",
"make-badges": "node_modules/.bin/jest-badges-readme"
},
"dependencies": {
"@react-native-community/toolbar-android": "^0.1.0-rc.2",
"appcenter": "2.6.0",
"appcenter-analytics": "2.6.0",
"appcenter-crashes": "2.6.0",
"react": "16.8.6",
"react-native": "0.60.5",
"react-native-easy-grid": "^0.2.2",
"react-native-gesture-handler": "^1.6.1",
"react-native-reanimated": "^1.9.0",
"react-native-router-flux": "4.2.0",
"react-native-screens": "^2.9.0",
"react-native-svg": "^11.0.1",
"react-redux": "^7.1.3",
"redux": "^4.0.4",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/runtime": "^7.6.0",
"@olavoparno/jest-badges-readme": "^1.4.0",
"@react-native-community/eslint-config": "^0.0.5",
"@testing-library/react-native": "^5.0.1",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-native": "^3.8.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"react-test-renderer": "16.8.6"
},
"jest": {
"preset": "@testing-library/react-native",
"collectCoverageFrom": [
"src/**/{!(index),}.js",
"!<rootDir>/node_modules/"
],
"coverageReporters": [
"json-summary",
"text"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
}
}