-
Notifications
You must be signed in to change notification settings - Fork 375
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.04 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.04 KB
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
{
"name": "root",
"private": true,
"workspaces": [
"package",
"package/native-package",
"package/expo-package",
"examples/SampleApp",
"examples/ExpoMessaging",
"examples/TypeScriptMessaging"
],
"resolutions": {
"@types/react": "^19.1.0",
"@shopify/flash-list": "patch:@shopify/flash-list@npm%3A2.3.1#~/.yarn/patches/@shopify-flash-list-npm-2.3.1-8b5fd40241.patch"
},
"engines": {
"node": ">=20.19.4"
},
"dependenciesMeta": {
"@swc/core": {
"built": true
},
"better-sqlite3": {
"built": true
},
"react-native-nitro-modules": {
"built": true
},
"unrs-resolver": {
"built": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/GetStream/stream-chat-react-native.git"
},
"devDependencies": {
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@eslint/js": "^9.39.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"dotenv": "^10.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-native": "^5.0.0",
"execa": "^5.1.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"prettier": "^3.8.3",
"semantic-release": "^25.0.3",
"typescript": "5.9.3",
"typescript-eslint": "^8.59.2",
"uglify-js": "^3.19.2"
},
"scripts": {
"postinstall": "husky",
"release": "yarn workspaces foreach -A --topological-dev --include stream-chat-react-native-core --include sampleapp run release",
"release-next": "yarn workspaces foreach -A --topological-dev --include stream-chat-react-native-core --include sampleapp run release-next",
"extract-changelog": "rm -rf NEXT_RELEASE_CHANGELOG.md && yarn workspaces foreach -A --topological-dev --include stream-chat-react-native-core --include sampleapp run extract-changelog",
"eslint": "eslint .",
"lint": "prettier --list-different . && eslint . --max-warnings 0 && yarn workspace stream-chat-react-native-core validate-translations",
"lint-fix": "prettier --write . && eslint . --fix --max-warnings 0",
"prettier": "prettier --list-different .",
"prettier-fix": "prettier --write .",
"typecheck": "yarn workspaces foreach -A --parallel --include 'stream-chat-react-native-core' --include 'sampleapp' --include 'typescriptmessaging' --include 'ExpoMessaging' run typecheck",
"build": "yarn workspace stream-chat-react-native-core build",
"test:coverage": "yarn workspace stream-chat-react-native-core test:coverage",
"test:unit": "yarn workspace stream-chat-react-native-core test:unit",
"minify-bundle": "uglifyjs package/lib/module/**/*.js -o package/lib/module/bundle.min.js -c -m"
},
"packageManager": "yarn@4.15.0"
}