-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 3.64 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
{
"name": "chimha",
"version": "3.0.0",
"description": "React Native Template/Boilerplate for awesome applications, using Typescript with a lot of built-in ready features.",
"dependencies": {
"@freakycoder/react-native-bounceable": "^0.2.5",
"@freakycoder/react-native-custom-text": "0.1.2",
"@freakycoder/react-native-helpers": "^1.0.2",
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/bottom-tabs": "^6.0.9",
"@react-navigation/native": "^6.0.6",
"@react-navigation/stack": "^6.0.11",
"axios": "^0.24.0",
"buffer": "^6.0.3",
"cheerio": "^1.0.0-rc.10",
"cross-fetch": "^3.1.5",
"events": "^3.3.0",
"iconv-lite": "^0.6.3",
"react": "17.0.2",
"react-native": "0.66.4",
"react-native-dynamic-vector-icons": "^1.1.6",
"react-native-gesture-handler": "^2.1.1",
"react-native-inappbrowser-reborn": "^3.6.3",
"react-native-localization": "^2.1.7",
"react-native-reanimated": "^2.2.4",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.10.1",
"react-native-splash-screen": "^3.3.0",
"react-native-svg": "^12.1.1",
"react-native-vector-icons": "^9.0.0",
"react-native-webview": "^11.23.1",
"react-navigation-helpers": "^2.0.0",
"react-query": "^3.34.16",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"rn-fetch-blob": "^0.12.0",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/runtime": "^7.16.7",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@react-native-community/eslint-config": "^3.0.1",
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-native": "^9.0.0",
"@types/base-64": "^1.0.0",
"@types/jest": "^27.4.1",
"@types/react-native": "^0.66.12",
"@types/react-test-renderer": "^17.0.1",
"@types/redux-logger": "^3.0.9",
"@types/styled-components": "^5.1.23",
"@types/styled-components-react-native": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^2.0.3",
"eslint": "^8.6.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"immer": "^9.0.12",
"jest": "^27.5.1",
"metro-react-native-babel-preset": "^0.66.2",
"prettier": "^2.5.1",
"react-native-svg-transformer": "^1.0.0",
"react-test-renderer": "^17.0.2",
"typescript": "^4.5.4"
},
"scripts": {
"android": "npx react-native run-android",
"ios": "npx react-native run-ios --simulator='iPhone 14'",
"start": "react-native start --reset-cache",
"husky:setup": "npx husky-init && npm run husky:commitlint && npm run husky:prettier",
"husky:commitlint": "npx husky add .husky/commit-msg 'npx --no-install commitlint --edit'",
"husky:prettier": "npx husky add .husky/pre-commit 'npm run prettier'",
"clean-up": "rm -rf .git && rm -rf ./assets && git init && npm run husky:setup",
"clean:android": "cd android && ./gradlew clean",
"debug:android": "cd android && ./gradlew assembleDebug",
"release:android": "cd android && ./gradlew assembleRelease",
"release:play": "cd android && ./gradlew bundleRelease",
"test:apk": "react-native run-android --variant=release",
"prettier": "cd src && npx prettier --write . && git add .",
"prepare": "husky install",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
}
}