-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
90 lines (90 loc) · 2.71 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "moonwalk",
"version": "2.3.0",
"private": true,
"repository": "https://github.com/Illu/moonwalk",
"author": "Maxime Nory",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "TZ=America/New_York LC_ALL=\"en_US.UTF-8\" jest",
"lint": "eslint ."
},
"engines": {
"node": ">=12"
},
"dependencies": {
"@react-native-community/async-storage": "^1.8.1",
"@react-native-community/masked-view": "^0.1.6",
"@react-native-community/push-notification-ios": "^1.1.0",
"@react-native-firebase/analytics": "^12.0.0",
"@react-native-firebase/app": "^12.0.0",
"@react-navigation/bottom-tabs": "^5.1.0",
"@react-navigation/native": "^5.0.0",
"@react-navigation/stack": "^5.0.0",
"add": "^2.0.6",
"mobx": "^6.3.2",
"mobx-react": "^7.2.0",
"react": "17.0.2",
"react-dom": "^17.0.2",
"react-native": "0.64.2",
"react-native-appearance": "^0.3.2",
"react-native-change-icon": "^3.0.0",
"react-native-gesture-handler": "^1.5.6",
"react-native-inappbrowser-reborn": "^3.4.0",
"react-native-open-maps": "^0.3.5",
"react-native-reanimated": "^2.2.0",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.3.0",
"react-native-store-review": "^0.2.0",
"react-native-svg": "^12.1.1",
"react-native-svg-transformer": "^0.14.3",
"react-navigation": "^4.3.2",
"react-navigation-stack": "^2.3.4",
"styled-components": "^5.0.1",
"yarn": "^1.22.10"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/runtime": "^7.14.0",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-native": "^4.0.1",
"@testing-library/react-hooks": "^7.0.0",
"@testing-library/react-native": "^7.1.0",
"@types/jest": "^26.0.23",
"@types/react-native": "^0.64.10",
"@types/styled-components": "^5.1.7",
"@types/styled-components-react-native": "^5.1.1",
"@typescript-eslint/parser": "^4.26.0",
"babel-jest": "^27.0.2",
"eslint": "^7.27.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-testing-library": "^4.6.0",
"husky": "^6.0.0",
"jest": "26.6.3",
"license-report": "^4.5.0",
"lint-staged": "^11.0.0",
"metro-react-native-babel-preset": "^0.66.0",
"prettier": "^2.0.2",
"react-test-renderer": "17.0.2",
"typescript": "^4.3.2"
},
"jest": {
"preset": "react-native",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn test"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write"
]
}
}