-
Notifications
You must be signed in to change notification settings - Fork 324
/
package.json
54 lines (54 loc) · 2.53 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
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/GetStream/stream-chat-react-native.git"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"detox": "^18.20.3",
"dotenv": "^10.0.0",
"execa": "^5.1.1",
"hostile": "^1.3.3",
"husky": "^6.0.0",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"prettier": "3.3.3",
"semantic-release": "^17.4.4",
"uglify-js": "^3.19.2"
},
"husky": {
"hooks": {
"pre-commit": "dotgit/hooks/pre-commit-format.sh && dotgit/hooks/pre-commit-reject-binaries.py",
"commit-msg": "npx commitlint --edit $1"
}
},
"scripts": {
"lerna-workspaces": "lerna",
"release": "yarn lerna-workspaces run release",
"release-rc": "yarn lerna-workspaces run release-rc",
"release-next": "yarn lerna-workspaces run release-next",
"extract-changelog": "rm -rf NEXT_RELEASE_CHANGELOG.md && yarn lerna-workspaces run extract-changelog",
"bootstrap": "yarn lerna-workspaces run bootstrap",
"lint": "yarn lerna-workspaces run lint && (cd docusaurus && npx prettier --check '**/*.mdx')",
"lint-fix": "yarn lerna-workspaces run lint-fix && (cd docusaurus && npx prettier --write '**/*.mdx')",
"build": "yarn lerna-workspaces run build",
"test:coverage": "yarn lerna-workspaces run test:coverage",
"test:unit": "yarn lerna-workspaces run test:unit",
"minify-bundle": "uglifyjs package/lib/module/**/*.js -o package/lib/module/bundle.min.js -c -m",
"detox-sample-android:build": "detox build --configuration android.sample.release",
"detox-sample-ios:build": "detox build --configuration ios.sample.release",
"detox-sample-android:test": "PLATFORM=android detox test --configuration android.sample.release e2e/entries/SampleApp.e2e.js",
"detox-sample-ios:test": "PLATFORM=ios detox test --configuration ios.sample.release e2e/entries/SampleApp.e2e.js",
"detox-sample-android:build_debug": "detox build --configuration android.sample.debug",
"detox-sample-ios:build_debug": "detox build --configuration ios.sample.debug",
"detox-sample-android:test_debug": "PLATFORM=android detox test --configuration android.sample.debug e2e/entries/SampleApp.e2e.js",
"detox-sample-ios:test_debug": "PLATFORM=ios detox test --configuration ios.sample.debug e2e/entries/SampleApp.e2e.js"
},
"packageManager": "[email protected]"
}