-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3 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
{
"name": "papers-game",
"version": "0.0.0",
"private": true,
"license": "MIT",
"engines": {
"npm": "please-use-yarn",
"yarn": ">=1.22.17",
"node": "18.x"
},
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"prepare": "husky install",
"check-writing": "alex .",
"check-types": "yarn tsc --noEmit",
"lint": "eslint --fix . --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore",
"format": "prettier --write . --ignore-path .gitignore",
"test": "jest"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.json": [
"prettier --write"
],
"*.{md,mdx,txt,html}": [
"prettier --write",
"alex"
]
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.17.11",
"@react-native-community/netinfo": "9.3.7",
"@react-navigation/native": "^6.1.6",
"@react-navigation/stack": "^6.3.16",
"@sentry/react-native": "4.15.2",
"expo": "~48.0.15",
"expo-application": "~5.1.1",
"expo-av": "~13.2.1",
"expo-constants": "~14.2.1",
"expo-device": "~5.2.1",
"expo-font": "~11.1.1",
"expo-linking": "~4.0.1",
"expo-mail-composer": "~12.1.1",
"expo-modules-autolinking": "~1.1.0",
"expo-splash-screen": "~0.18.2",
"expo-status-bar": "~1.4.4",
"expo-store-review": "~6.2.1",
"expo-updates": "~0.16.4",
"firebase": "^9.21.0",
"jest": "^29.2.1",
"jest-expo": "^48.0.2",
"pubsub-js": "^1.9.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.8",
"react-native-gesture-handler": " ~2.9.0",
"react-native-reanimated": "~2.14.4",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "^3.20.0",
"react-native-svg": "13.4.0",
"react-native-web": "~0.18.10",
"sentry-expo": "~6.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.1.6",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@commitlint/types": "^17.4.4",
"@expo/webpack-config": "^18.0.4",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.195",
"@types/node": "^18.16.3",
"@types/pubsub-js": "^1.8.3",
"@types/react": "~18.0.27",
"@types/react-dom": "~18.0.10",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"alex": "^11.0.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"lodash": "^4.17.15",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"usehooks-ts": "^2.9.1"
}
}