-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
52 lines (52 loc) · 1.56 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
{
"name": "react-native-clean-architecture",
"version": "1.0.0",
"scripts": {
"prepare": "husky install",
"dev": "expo start --dev-client",
"web": "expo start --web --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"eject": "expo eject",
"lint": "eslint ./src --ext .ts,.tsx --max-warnings 0",
"start": "expo start --dev-client"
},
"dependencies": {
"@expo/webpack-config": "^0.17.0",
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.1",
"axios": "^1.1.3",
"class-transformer": "^0.5.1",
"expo": "~46.0.21",
"expo-dev-client": "~1.3.1",
"expo-linking": "~3.2.2",
"expo-localization": "~13.1.0",
"expo-splash-screen": "~0.16.2",
"expo-status-bar": "~1.4.0",
"i18n-js": "^4.1.1",
"inversify-sugar": "^0.5.9",
"mobx": "^6.12.0",
"mobx-react": "^9.1.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.9",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "^3.25.0",
"react-native-web": "~0.18.7"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@carlossalasamper/eslint-config": "^0.1.4",
"@commitlint/config-conventional": "^17.7.0",
"@types/i18n-js": "^3.8.3",
"@types/react": "~18.0.14",
"@types/react-native": "~0.69.1",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"commitlint": "^17.7.1",
"eslint": "^8.26.0",
"husky": "^7.0.4",
"prettier": "^2.5.0",
"typescript": "~4.3.5"
}
}