-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.2 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
{
"name": "my-app",
"version": "0.0.1",
"private": true,
"scripts": {
"android:dev": "react-native run-android --variant=devDebug --appIdSuffix=dev",
"android:prod": "react-native run-android --variant=prodDebug --appIdSuffix=prod",
"android:qa": "react-native run-android --variant=qaDebug --appIdSuffix=qa",
"ios:dev": " react-native run-ios --scheme Dev",
"ios:prod": "react-native run-ios --scheme Release",
"ios:qa": "react-native run-ios --scheme Qa",
"start": "react-native start",
"create-appicon": "iconset create",
"generate-bootsplash": "react-native generate-bootsplash assets/images/bootsplash_logo_original.png --background-color=020C56 --logo-width=100 --assets-path=assets/images --flavor=main",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"commit": "git-cz",
"prepare": "husky install"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.7",
"axios": "^0.27.2",
"react": "18.0.0",
"react-native": "0.69.1",
"react-native-bootsplash": "^4.2.2",
"react-native-config": "^1.4.6",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5",
"tsyringe": "^4.7.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-decorators": "^7.18.6",
"@babel/runtime": "^7.12.5",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.23",
"@types/react-native": "^0.69.0",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.32.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.0",
"icon-set-creator": "^1.0.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.70.3",
"patch-package": "^6.4.7",
"react-test-renderer": "18.0.0",
"typescript": "^4.4.4"
},
"resolutions": {
"@types/react": "^18"
}
}