-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 4.84 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 4.84 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "react-native-notify-kit-root",
"private": true,
"license": "Apache-2.0",
"scripts": {
"prepare": "lerna run prepare && yarn build:core:ios",
"precommit": "yarn build:all:clean && yarn prepare && yarn build:all && yarn gen:reference && yarn validate:all && yarn test:all",
"build:all": "yarn build:core && yarn build:rn",
"build:core": "yarn build:core:ios",
"build:all:clean": "rimraf ios/build && lerna run build:clean",
"build:rn": "cd packages/react-native && yarn build",
"build:rn:server": "cd packages/react-native && yarn build:server",
"build:rn:watch": "cd packages/react-native && yarn build:watch",
"build:core:ios": "./build_ios_core.sh",
"format:all": "yarn format:core && yarn format:rn",
"format:all:check": "yarn format:core:check && yarn format:rn:check",
"format:rn": "yarn format:rn:android && yarn format:rn:ios",
"format:rn:check": "yarn format:rn:android:check && yarn format:rn:ios:check",
"format:rn:android": "echo 'RN Android bridge is Kotlin — no Java files to format'",
"format:rn:android:check": "echo 'RN Android bridge is Kotlin — no Java files to format'",
"format:rn:ios": "cd packages/react-native/ios && yarn format:ios",
"format:rn:ios:check": "cd packages/react-native/ios && yarn format:ios:check",
"format:core": "yarn format:core:android && yarn format:core:ios",
"format:core:check": "yarn format:core:android:check && yarn format:core:ios:check",
"format:core:android": "cd packages/react-native && yarn format:android",
"format:core:android:check": "cd packages/react-native && yarn format:android:check",
"format:core:ios": "cd ios && yarn format:ios",
"format:core:ios:check": "cd ios && yarn format:ios:check",
"format:android": "yarn google-java-format --replace -i $(find . -type f -name \"*.java\" ! -path \"*/node_modules/*\" ! -path \"*/generated/*\")",
"format:android:check": "yarn google-java-format --set-exit-if-changed --replace -i $(find . -type f -name \"*.java\" ! -path \"*/node_modules/*\" ! -path \"*/generated/*\")",
"format:ios": "yarn clang-format -i --glob=\"ios/**/*.{h,cpp,m,mm}\" --style=Google",
"format:ios:check": "yarn clang-format --glob=\"ios/**/*.{h,cpp,m,mm}\" --style=Google -n -Werror",
"validate:all": "yarn validate:all:js && yarn validate:all:ts",
"validate:all:js": "eslint .",
"validate:all:ts": "tsc --project ./",
"gen:reference": "yarn typedoc",
"test:all": "yarn test:core:android && yarn tests_rn:test",
"test:core:android": "cd apps/smoke/android && ./gradlew :react-native-notify-kit:testDebugUnitTest",
"tests_rn:test": "cd packages/react-native && npx jest --config jest.config.js",
"tests_rn:test-watch": "cd packages/react-native && npx jest --config jest.config.js --watch",
"tests_rn:test-coverage": "cd packages/react-native && npx jest --config jest.config.js --coverage",
"tests_rn:test-server": "cd packages/react-native && npx jest --config jest.config.server.js",
"verify:consumer-resolution": "bash scripts/verify-consumer-resolution.sh",
"e2e:cli-tarball": "bash scripts/e2e-cli-tarball.sh",
"smoke:android": "cd apps/smoke && npx react-native run-android",
"smoke:ios": "cd apps/smoke && npx react-native run-ios",
"smoke:start": "cd apps/smoke && npx react-native start",
"send:test:fcm": "node scripts/send-test-fcm.js"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint/compat": "^2.0.3",
"@react-native/eslint-config": "^0.84.1",
"@react-native/eslint-plugin": "^0.84.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.0.0",
"clang-format": "^1.6.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-native": "^4.1.0",
"firebase-admin": "^13.8.0",
"google-java-format": "^1.4.0",
"lerna": "^9.0.7",
"prettier": "^3.8.1",
"remark-link-rewrite": "^1.0.7",
"rimraf": "^3.0.2",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"typedoc": "^0.27.5",
"typedoc-plugin-markdown": "~4.4.2",
"typedoc-plugin-remark": "~1.2.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
},
"resolutions": {
"@types/node": "^22.0.0",
"@tootallnate/once": "^3.0.1"
},
"lint-staged": {
"packages/**/*.js": [
"eslint --fix"
],
"packages/react-native/__tests__/**/*.ts": [
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"workspaces": [
"packages/*",
"apps/*"
],
"engines": {
"node": ">=22"
},
"packageManager": "yarn@4.6.0"
}