This repository has been archived by the owner on Dec 29, 2022. It is now read-only.
forked from etn-ccis/blui-react-native-showcase-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.54 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
{
"name": "reactNativeShowcaseDemo",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint \"**/**.{ts,tsx}\"",
"lint:fix": "eslint \"**/**.{ts,tsx}\" --fix",
"prettier": "prettier \"**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --write",
"build": "react-native bundle --entry-file=index.tsx --bundle-output=build.bundle",
"prettier:check": "prettier \"**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --check",
"rnlink": "npx react-native link",
"precommit": "yarn prettier && yarn lint && yarn build",
"coverage": "yarn test --coverage --watchAll=false"
},
"dependencies": {
"@brightlayer-ui/colors": "^3.1.1",
"@brightlayer-ui/icons-svg": "^1.11.0",
"@brightlayer-ui/react-native-components": "^6.0.3",
"@brightlayer-ui/react-native-progress-icons": "^1.0.2",
"@brightlayer-ui/react-native-themes": "^6.0.0",
"@brightlayer-ui/react-native-vector-icons": "^2.0.0-beta.0",
"@react-native-masked-view/masked-view": "^0.2.7",
"@react-navigation/drawer": "^5.8.1",
"@react-navigation/native": "^5.5.0",
"@react-navigation/stack": "^5.4.1",
"color": "^4.2.3",
"lodash.clonedeep": "^4.5.0",
"react": "18.1.0",
"react-native": "0.70.0",
"react-native-collapsible": "^1.6.0",
"react-native-gesture-handler": "^2.6.2",
"react-native-modal": "^13.0.1",
"react-native-paper": "^4.12.4",
"react-native-reanimated": "^2.10.0",
"react-native-restart": "^0.0.24",
"react-native-safe-area-context": "^3.0.0",
"react-native-screens": "^3.17.0",
"react-native-svg": "^12.1.0",
"react-native-vector-icons": "^9.2.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/runtime": "^7.19.0",
"@brightlayer-ui/eslint-config": "^3.0.1",
"@brightlayer-ui/prettier-config": "^1.0.3",
"@testing-library/react-native": "^11.2.0",
"@types/color": "^3.0.3",
"@types/jest": "^29.1.0",
"@types/lodash.clonedeep": "^4.5.7",
"@types/react-native": "~0.70.4",
"@types/react-native-vector-icons": "^6.4.12",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"babel-jest": "^29.1.0",
"codecov": "^3.8.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.8",
"jest": "^26.6.3",
"jest-expo": "^46.0.1",
"metro-react-native-babel-preset": "^0.72.3",
"prettier": "^2.7.1",
"react-native-svg-transformer": "^1.0.0",
"react-test-renderer": "18.2.0",
"typescript": "^4.8.4"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transformIgnorePatterns": [
"node_modules/(react-clone-referenced-element|@react-native-community|react-navigation|@react-navigation/.*|@unimodules/.*|native-base|react-native-code-push)',"
]
},
"prettier": "@brightlayer-ui/prettier-config"
}