-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 3.31 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
{
"name": "react-native-design-patterns",
"version": "0.0.0",
"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",
"prettier:check": "prettier \"**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --check"
},
"dependencies": {
"@brightlayer-ui/colors": "^3.1.1",
"@brightlayer-ui/icons-svg": "^1.13.1",
"@brightlayer-ui/react-native-components": "^6.0.2",
"@brightlayer-ui/react-native-themes": "^6.0.0",
"@brightlayer-ui/react-native-vector-icons": "^1.7.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/drawer": "^5.12.3",
"@react-navigation/native": "^5.9.3",
"@react-navigation/stack": "^5.14.3",
"react": "17.0.1",
"react-native": "0.64.3",
"react-native-draggable-flatlist": "^2.5.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-modal": "^13.0.1",
"react-native-paper": "^4.12.8",
"react-native-reanimated": "^1.0.0",
"react-native-safe-area-context": "^3.4.1",
"react-native-screens": "^3.27.0",
"react-native-svg": "^15.9.0",
"react-native-svg-transformer": "^1.5.0",
"react-native-vector-icons": "^8.0.0",
"rn-placeholder": "^3.0.3"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/runtime": "^7.17.2",
"@brightlayer-ui/eslint-config": "^2.0.2",
"@brightlayer-ui/prettier-config": "^1.0.2",
"@react-native-community/eslint-config": "^3.0.0",
"@types/jest": "^27.4.1",
"@types/react-native": "^0.66.16",
"@types/react-native-vector-icons": "^6.4.10",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-jest": "^29.4.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.2",
"jest": "^27.5.1",
"jest-transform-stub": "^2.0.0",
"metro-react-native-babel-preset": "^0.69.0",
"react-test-renderer": "17.0.1",
"typescript": "^5.6.2"
},
"resolutions": {
"@types/react": "^17"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transformIgnorePatterns": [
"node_modules/(@react-native-community|react-navigation|@react-navigation/.*)"
],
"setupFiles": [
"./jestSetupFile.js",
"./node_modules/react-native-gesture-handler/jestSetup.js"
],
"moduleNameMapper": {
"\\.svg": "<rootDir>/__mocks__/svgMock.js",
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"\\.(css|less)$": "identity-obj-proxy"
}
},
"prettier": "@brightlayer-ui/prettier-config"
}