-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.91 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.91 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
{
"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",
"ci:version": "changeset version && yarn install --no-immutable",
"ci:publish": "yarn workspaces foreach --no-private -At npm publish && changeset tag",
"brownfield:plugin:publish:local": "bash ./gradle-plugins/publish-to-maven-local.sh --skip-signing",
"brownfield:plugin:publish:local:signed": "bash ./gradle-plugins/publish-to-maven-local.sh",
"build:brownfield": "turbo run build:brownfield",
"build:docs": "turbo run build:docs",
"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",
"@expo/config-plugins": "^54.0.4"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@eslint/compat": "^2.0.1",
"@expo/config-types": "^54.0.10",
"@react-native/eslint-config": "0.82.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.1.3",
"lefthook": "^2.0.15",
"prettier": "^3.7.4",
"quicktype-core": "^23.2.6",
"quicktype-typescript-input": "^23.2.6",
"turbo": "^2.7.4",
"typescript": "5.9.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"engines": {
"node": ">=20"
}
}