-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.74 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.74 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
{
"name": "@openmobilehub/maps",
"version": "1.0.0",
"description": "React Native OMH Maps Workspace",
"private": true,
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/runtime": "^7.24.1",
"@commitlint/config-conventional": "^19.1.0",
"@docusaurus/eslint-plugin": "3.1.1",
"@docusaurus/module-type-aliases": "3.1.1",
"@docusaurus/tsconfig": "3.1.1",
"@docusaurus/types": "3.1.1",
"@evilmartians/lefthook": "^1.6.7",
"@react-native/babel-preset": "0.74.81",
"@react-native/eslint-config": "0.74.81",
"@react-native/metro-config": "0.74.81",
"@react-native/typescript-config": "0.74.81",
"@release-it/conventional-changelog": "^8.0.1",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/node": "^20.11.30",
"@types/prompts": "^2.4.9",
"@types/react": "^18.2.67",
"@types/validate-npm-package-name": "^4.0.2",
"babel-plugin-module-resolver": "^5.0.0",
"commitlint": "^19.2.1",
"create-react-native-library": "^0.35.1",
"cross-env": "^7.0.3",
"del-cli": "^5.1.0",
"docusaurus-plugin-typedoc": "^0.22.0",
"email-validator": "^2.0.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"lerna": "^8.1.3",
"libxmljs2": "^0.33.0",
"ora": "^8.0.1",
"prettier": "^3.2.5",
"prompts": "^2.4.2",
"react-native-builder-bob": "^0.23.2",
"release-it": "^17.1.1",
"ts-node": "^10.9.2",
"tsc-files": "^1.1.4",
"tsx": "^4.7.1",
"turbo": "^1.12.5",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-replace-text": "^3.3.0",
"typescript": ">=4.3.5 <5.4.0",
"validate-npm-package-name": "^5.0.0"
},
"dependencies": {
"@docusaurus/core": "3.1.1",
"@docusaurus/preset-classic": "3.1.1",
"@mdx-js/react": "^3.0.0",
"clsx": "^2.0.0",
"lodash": "^4.17.21",
"prism-react-renderer": "^2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "^0.74.0"
},
"scripts": {
"sample-app": "cross-env FORCE_COLOR=1 yarn workspace @openmobilehub/maps-sample-app",
"docs": "cross-env FORCE_COLOR=1 yarn workspace @openmobilehub/maps-docs",
"scripts": "cross-env FORCE_COLOR=1 yarn workspace @openmobilehub/maps-scripts",
"core": "cross-env FORCE_COLOR=1 yarn workspace @openmobilehub/maps-core",
"build:packages": "yarn run prepare",
"build:android:debug": "npx turbo build:android:debug",
"build:ios:debug": "npx turbo build:ios:debug",
"build:android:release": "npx turbo build:android:release",
"build:ios:release": "npx turbo build:ios:release",
"test": "cross-env FORCE_COLOR=1 yarn workspaces foreach -A -p run test",
"typecheck": "cross-env FORCE_COLOR=1 yarn workspaces foreach -A -p run typecheck",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"clean": "cross-env FORCE_COLOR=1 yarn workspaces foreach -A -p --exclude @openmobilehub/maps-sample-app run clean",
"prepare": "cross-env FORCE_COLOR=1 yarn workspaces foreach -A -p --exclude @openmobilehub/maps-sample-app run prepare",
"release": "cross-env FORCE_COLOR=1 yarn workspaces foreach -A -p --exclude @openmobilehub/maps-sample-app run release",
"postinstall": "node ./scripts/postInstall.js",
"codegen:android": "./apps/sample-app/android/gradlew -p apps/sample-app/android generateCodegenArtifactsFromSchema -t android",
"codegen:ios": "node node_modules/react-native/scripts/generate-codegen-artifacts.js --path . --outputPath ./apps/sample-app/ios -t ios",
"version:bump": "./.github/scripts/bump-version.sh"
},
"workspaces": [
"apps/sample-app",
"scripts",
"docs",
"packages/*"
],
"packageManager": "yarn@4.2.2"
}