-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
131 lines (131 loc) · 3.97 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "chase",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"checkTs": "tsc --noEmit",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx",
"lint": "yarn run eslint .",
"lint:fix": "yarn run eslint --fix .",
"prettify": "prettier --write .",
"release": "standard-version",
"prepare": "npx husky install"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"yarn run eslint --fix"
],
"*.{md,json}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"preset": "react-native"
},
"resolutions": {
"@types/react": "^17"
},
"dependencies": {
"@apollo/client": "^3.3.15",
"@flyskywhy/react-native-locale-detector": "^1.0.5",
"@react-native-community/hooks": "^2.6.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/bottom-tabs": "^5.11.9",
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.4",
"create-react-class": "^15.7.0",
"credit-card-type": "^9.1.0",
"graphql": "^15.5.0",
"i18next": "^20.2.1",
"i18next-react-native-language-detector": "^1.0.2",
"i18next-scanner": "^3.0.0",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-i18next": "^11.8.13",
"react-is": "^17.0.2",
"react-native": "^0.64.0",
"react-native-chart-kit": "^6.11.0",
"react-native-device-info": "^8.1.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-reanimated": "^2.1.0",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.1.1",
"react-native-svg": "^12.1.1-0",
"react-native-video": "^5.1.1",
"react-viro": "^2.17.0",
"reanimated-bottom-sheet": "^1.0.0-alpha.22",
"styled-components": "^5.2.3"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/runtime": "^7.13.10",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@expo/metro-config": "^0.1.62",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-native": "^4.0.1",
"@testing-library/react-native": "^7.2.0",
"@types/jest": "^26.0.22",
"@types/react-native": "^0.64.2",
"@types/react-native-video": "^5.0.4",
"@types/react-test-renderer": "^17.0.1",
"@types/styled-components": "^5.1.9",
"@types/styled-components-react-native": "^5.1.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-jest": "^26.6.3",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-flowtype": "^5.7.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-styled-components": "^7.0.3",
"lint-staged": "^10.5.4",
"metro-react-native-babel-preset": "^0.65.2",
"prettier": "^2.2.1",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "^17.0.2",
"standard-version": "^9.2.0",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^4.0.0",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"stylelint-scss": "^3.19.0",
"stylelint-selector-bem-pattern": "^2.1.0",
"typescript": "^4.2.4"
}
}