-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.76 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
{
"name": "life-rate",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"android": "expo run:android",
"prebuild": "expo prebuild",
"build": "expo export --output-dir ./build --platform all",
"dev": "expo start",
"eas-build-pre-install": "npm install --global [email protected]",
"eject": "expo eject",
"ios": "expo run:ios",
"lint": "eslint --ext js,ts,tsx .",
"lint:fix": "nr lint --fix",
"start": "expo start",
"web": "expo start --web"
},
"eslintConfig": {
"parser": "@babel/eslint-parser",
"extends": [
"standard",
"standard-jsx",
"standard-react",
"plugin:sort/recommended",
"plugin:unicorn/recommended"
],
"rules": {
"react/prop-types": "off",
"unicorn/consistent-function-scoping": "off",
"unicorn/filename-case": "off"
},
"ignorePatterns": [
"*.config.js",
"node_modules",
"build",
".expo",
".expo-shared"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "~6.4.2",
"@fortawesome/free-solid-svg-icons": "~6.4.2",
"@fortawesome/react-native-fontawesome": "~0.3.0",
"@gorhom/bottom-sheet": "~4.5.1",
"@react-navigation/bottom-tabs": "~6.5.11",
"@react-navigation/native": "~6.1.9",
"case-anything": "~2.1.13",
"dayjs": "~1.11.10",
"expo": "49.0.20",
"expo-dev-client": "~2.4.12",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"expo-updates": "~0.18.17",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.6",
"react-native-chart-kit": "~6.12.0",
"react-native-date-picker": "^4.3.3",
"react-native-dropdown-picker": "~5.4.6",
"react-native-gesture-handler": "~2.12.1",
"react-native-mmkv-storage": "~0.9.1",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.1",
"react-native-svg": "13.9.0",
"react-native-web": "~0.19.9",
"twrnc": "~3.6.4"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-decorators": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.4",
"eslint": "^8.54.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-react": "[email protected]:standard/eslint-config-standard-react.git",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-sort": "^2.11.0",
"eslint-plugin-unicorn": "^43.0.2"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"expo-modules-*",
"typescript"
]
}
}
}