-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.38 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.38 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": "multi-instance-monorepo",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"ios": "bun run ios --filter=@apps/side-by-side",
"android": "bun run android --filter=@apps/side-by-side",
"lint": "eslint . && bun --filter=@callstack/react-native-sandbox lint",
"format": "eslint . --fix && bun --filter=@callstack/react-native-sandbox format",
"typecheck": "bun --filter=@callstack/react-native-sandbox typecheck",
"test": "bun run jest && bun --filter=@callstack/react-native-sandbox ctest"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@babel/runtime": "^7.25.0",
"@commitlint/config-conventional": "^17.0.2",
"@evilmartians/lefthook": "^1.5.0",
"@react-native/babel-preset": "0.80.1",
"@react-native/eslint-config": "0.80.1",
"@react-native/metro-config": "0.80.1",
"@react-native/typescript-config": "0.80.1",
"@release-it-plugins/workspaces": "^4.2.0",
"@release-it/conventional-changelog": "^8.0.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.9",
"@types/react-test-renderer": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"babel-jest": "^30.0.5",
"commitlint": "^17.0.2",
"eslint": "^9.31.0",
"eslint-config-expo": "^9.2.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"react-native-builder-bob": "^0.23.2",
"react-native-web": "^0.21.0",
"react-test-renderer": "19.1.0",
"release-it": "^17.6.0",
"typescript": "^5.2.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": false,
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
},
"@release-it-plugins/workspaces": {
"workspaces": [
"packages/*"
]
}
}
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.1.0",
"version": "0.5.0"
}