-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.39 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.39 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
{
"name": "@callstack/brownfield-monorepo",
"private": true,
"workspaces": [
"packages/*",
"apps/*",
"docs",
"gradle-plugins/*"
],
"scripts": {
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"build": "turbo run build",
"dev": "yarn workspaces foreach -Api run dev",
"release": "release-it --config packages/react-native-brownfield/.release-it.json",
"version-packages": "changeset version && yarn install --no-immutable",
"publish-packages": "turbo run build lint && changeset version && changeset publish",
"brownfield:plugin:publish:local": "bash ./gradle-plugins/publish-to-maven-local.sh",
"build:brownfield": "turbo run build:brownfield",
"build:docs": "turbo run build:docs",
"build:tester-integrated:android": "turbo run build:tester-integrated:android",
"build:tester-integrated:ios": "turbo run build:tester-integrated:ios",
"build:example:android-rn": "turbo run build:example:android-rn",
"build:example:ios-rn": "turbo run build:example:ios-rn",
"build:example:android-consumer": "turbo run build:example:android-consumer",
"build:example:ios-consumer": "turbo run build:example:ios-consumer",
"generate:store": "node --experimental-strip-types --no-warnings ./scripts/generate-store.ts"
},
"resolutions": {
"@types/react": "19.1.1"
},
"packageManager": "yarn@4.12.0",
"dependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"quicktype-core": "^23.2.6",
"quicktype-typescript-input": "^23.2.6"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/compat": "^2.0.1",
"@react-native/eslint-config": "^0.83.1",
"babel-plugin-module-resolver": "5.0.2",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-node-import": "^1.0.5",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.2.0",
"lefthook": "^2.0.3",
"prettier": "^3.5.3",
"turbo": "^2.7.3",
"typescript": "5.8.3",
"typescript-eslint": "^8.53.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"engines": {
"node": ">=20"
}
}