-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
136 lines (136 loc) · 4.81 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
132
133
134
135
136
{
"name": "veriapp",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"android-release": "react-native run-android --variant=release",
"android-staging": "react-native run-android --variant=stagingrelease --appIdSuffix=staging",
"ios": "react-native run-ios ",
"ios:ip13p": "react-native run-ios --simulator=\"iPhone 13 Pro\"",
"ios:ip13": "react-native run-ios --simulator=\"iPhone 13\"",
"ios:ip12": "react-native run-ios --simulator=\"iPhone 12\"",
"ios:ip11": "react-native run-ios --simulator=\"iPhone 11\"",
"ios:ip8": "react-native run-ios --simulator=\"iPhone 8\"",
"ios:ip6": "react-native run-ios --simulator=\"iPhone 6s\"",
"ios-release": "react-native run-ios --scheme=\"picodi.production\"",
"ios-staging": "react-native run-ios --scheme=\"picodi.staging\"",
"start": "react-native start",
"test": "jest --passWithNoTests",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 0",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"type-check": "tsc --noEmit --skipLibCheck",
"format:check": "prettier \"src/**/*.{js,jsx,json,ts,tsx,css,scss}\" -c",
"format": "prettier --write \"src/**/*.{js,jsx,json,ts,tsx,css,scss}\" ",
"full": "yarn lint && yarn type-check && yarn test && yarn format:check",
"full:fix": "yarn lint:fix && yarn format",
"android:clean": "cd android && ./gradlew clean && cd ..",
"ios:install": "cd ios && pod install && cd .. ",
"cacheCleanup": "watchman watch-del-all && rm -rf node_modules && yarn cache clean && yarn install && yarn start --reset-cache",
"postinstall": "node ./bin/postInstall"
},
"prettier": "@twgdev/prettier-config",
"dependencies": {
"@react-navigation/native": "^6.0.7",
"@react-navigation/stack": "^6.1.0",
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/react-native": "^8.0.0",
"axios": "^0.25.0",
"date-fns": "^2.28.0",
"i18next": "^21.6.10",
"react": "17.0.2",
"react-hook-form": "^7.25.3",
"react-i18next": "^11.15.3",
"react-native": "0.67.1",
"react-native-config": "^1.4.5",
"react-native-device-info": "^8.4.8",
"react-native-fast-image": "^8.5.11",
"react-native-gesture-handler": "^2.2.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-reanimated": "^2.3.1",
"react-native-safe-area-context": "^3.3.2",
"react-query": "^3.34.12",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@twgdev/prettier-config": "^1.0.3",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.25",
"@types/react-native": "^0.66.15",
"@types/react-test-renderer": "^17.0.1",
"@types/styled-components": "5.1.6",
"@types/styled-components-react-native": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^7.2.0",
"eslint-config-twg": "1.0.4",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unused-imports": "^1.1.5",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.2",
"prettier": "^2.5.1",
"react-test-renderer": "17.0.2",
"typescript": "^4.1.4"
},
"resolutions": {
"@types/react": "^17"
},
"jest": {
"moduleNameMapper": {
"\\.svg": "<rootDir>/__mocks__/svgMock.js"
},
"preset": "@testing-library/react-native",
"setupFiles": [
"<rootDir>/node_modules/react-native/jest/setup.js",
"<rootDir>/jest.config.tsx",
"<rootDir>/node_modules/react-native-gesture-handler/jestSetup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/e2e"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?@?react-native|react-native|@react-navigation|@storybook|@react-native-community)"
],
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/*.types.ts",
"!**/*.mocks.ts"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"text-summary"
],
"coverageThreshold": {
"global": {
"statements": 0,
"branches": 0,
"functions": 0,
"lines": 0
}
}
}
}