-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
97 lines (97 loc) · 3.53 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
{
"name": "myapp",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"ios:ip12": "react-native run-ios --simulator=\"iPhone 12\"",
"ios:ip11": "react-native run-ios --simulator=\"iPhone 11\"",
"ios:ip11ProMax": "react-native run-ios --simulator=\"iPhone 11 Pro Max\"",
"ios:ip8": "react-native run-ios --simulator=\"iPhone 8\"",
"ios:ip6": "react-native run-ios --simulator=\"iPhone 6s\"",
"ios:SE": "react-native run-ios --simulator=\"iPhone SE (2nd generation)\"",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"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": "yarn android:clean && yarn ios:install"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/native": "^6.0.2",
"@types/d3-shape": "^3.0.2",
"@types/node": "^16.7.4",
"@types/react-native-svg-charts": "^5.0.9",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.3.2",
"react": "17.0.2",
"react-native": "0.65.1",
"react-native-dotenv": "^3.0.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-reanimated": "^2.2.0",
"react-native-safe-area-context": "^3.3.0",
"react-native-screens": "^3.6.0",
"react-native-svg": "^12.1.1",
"react-native-svg-charts": "^5.4.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@react-navigation/stack": "^6.0.7",
"@twgdev/prettier-config": "^1.0.2",
"@types/jest": "^26.0.23",
"@types/react-native": "^0.64.5",
"@types/react-test-renderer": "^16.9.2",
"@types/styled-components": "5.1.6",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"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.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.64.0",
"react-native-codegen": "^0.0.7",
"react-test-renderer": "17.0.2",
"typescript": "^3.8.3"
},
"resolutions": {
"@types/react": "^17"
},
"prettier": "@twgdev/prettier-config",
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}