-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
package.json
115 lines (115 loc) · 3.59 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "react-native-gifted-chat",
"version": "2.6.4",
"description": "The most complete chat UI for React Native",
"keywords": [
"android",
"ios",
"react-native",
"react",
"react-component",
"messenger",
"message",
"chat"
],
"homepage": "https://github.com/FaridSafi/react-native-gifted-chat#readme",
"bugs": {
"url": "https://github.com/FaridSafi/react-native-gifted-chat/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FaridSafi/react-native-gifted-chat.git"
},
"license": "MIT",
"author": "Farid Safi",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"src",
"lib"
],
"scripts": {
"build": "rm -rf lib/ && yarn tsc && cp flow-typedefs/*.js.flow lib/",
"lint": "yarn eslint src",
"lint:fix": "yarn eslint --cache --fix",
"prepublishOnly": "yarn lint && yarn build && yarn test",
"start": "cd example && expo start",
"start:web": "cd example && expo start -w --dev",
"test": "TZ=Europe/Paris jest --no-watchman",
"test:coverage": "TZ=Europe/Paris jest --coverage",
"test:watch": "TZ=Europe/Paris jest --watch",
"tsc:write": "yarn tsc --project tsconfig.json",
"tsc:watch": "yarn tsc --watch --noEmit",
"fresh": "yarn start --reset-cache",
"prepare": "yarn husky"
},
"lint-staged": {
"src/*.{json,js,jsx,ts,tsx}": [
"yarn lint:fix",
"bash -c 'yarn tsc:write'"
]
},
"dependencies": {
"@expo/react-native-action-sheet": "^4.1.0",
"@types/lodash.isequal": "^4.5.8",
"dayjs": "^1.11.13",
"lodash.isequal": "^4.5.0",
"prop-types": "^15.8.1",
"react-native-communications": "^2.2.1",
"react-native-iphone-x-helper": "^1.3.1",
"react-native-lightbox-v2": "^0.9.0",
"react-native-parsed-text": "^0.0.22",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-react-jsx": "^7.25.2",
"@babel/plugin-transform-unicode-property-regex": "^7.24.7",
"@babel/preset-env": "^7.25.4",
"@react-native/eslint-config": "^0.74.82",
"@stylistic/eslint-plugin": "^2.6.4",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/react-native": "^0.72.8",
"@types/react-test-renderer": "^18.3.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.35.0",
"flow-bin": "^0.244.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"json": "^11.0.0",
"lint-staged": "^15.2.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-native": "^0.74.5",
"react-native-get-random-values": "^1.11.0",
"react-native-reanimated": "^3.15.0",
"react-native-safe-area-context": "^4.10.9",
"react-test-renderer": "^18.3.1",
"typescript": "^5.5.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-get-random-values": "*",
"react-native-reanimated": "*",
"react-native-safe-area-context": "*"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"engines": {
"node": ">=18"
}
}