-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.78 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest"
},
"dependencies": {
"@react-native-community/hooks": "2.4.3",
"@react-native-community/masked-view": "0.1.5",
"@react-navigation/native": "5.0.7",
"@react-navigation/stack": "5.0.8",
"@reduxjs/toolkit": "1.2.5",
"axios": "0.19.2",
"date-fns": "2.9.0",
"expo": "~36.0.0",
"expo-linear-gradient": "~8.0.0",
"he": "1.2.0",
"memoize-state": "2.0.14",
"mockdate": "2.0.5",
"react": "~16.9.0",
"react-dom": "~16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.0.tar.gz",
"react-native-elements": "1.2.7",
"react-native-gesture-handler": "~1.5.0",
"react-native-reanimated": "~1.4.0",
"react-native-safe-area-context": "0.6.0",
"react-native-screens": "2.0.0-alpha.12",
"react-native-web": "~0.11.7",
"react-redux": "7.2.0",
"react-use": "13.26.1",
"redux-thunk": "2.3.0",
"shortid": "2.2.15",
"styled-components": "5.0.1",
"styled-system": "5.1.5",
"underscore": "1.9.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "7.8.3",
"@react-native-community/eslint-config": "0.0.7",
"@types/date-fns": "2.6.0",
"@types/jest": "25.1.3",
"@types/mockdate": "2.0.0",
"@types/react": "~16.9.0",
"@types/react-native": "~0.60.23",
"@types/react-redux": "7.1.7",
"@types/styled-components": "5.0.0",
"@types/styled-system": "5.1.7",
"@typescript-eslint/eslint-plugin": "2.20.0",
"@typescript-eslint/parser": "2.20.0",
"babel-plugin-module-resolver": "4.0.0",
"babel-preset-expo": "~8.0.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"husky": ">=4",
"jest-expo": "36.0.1",
"jest-fetch-mock": "3.0.1",
"lint-staged": ">=10",
"prettier": "1.19.1",
"react-test-renderer": "16.12.0",
"redux-logger": "3.0.6",
"redux-mock-store": "1.5.4",
"typescript": "3.8.2"
},
"private": true,
"jest": {
"preset": "jest-expo",
"setupFiles": [
"./app/test/setupJest.ts"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base)"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": "prettier --write",
"*.{js,jsx,ts,tsx}": "eslint --fix"
}
}