-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
48 lines (48 loc) · 1.93 KB
/
package.json
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
{
"private": true,
"//": [
"CI scripts are all --no-cache because we aren't using Vercel's remote cache and the caches aren't working. It may be possible to cache dependencies in the future, but for now caching breaks the build."
],
"scripts": {
"build": "turbo run build --filter=!@infinitered/react-native-mlkit-docs",
"build:docs": "turbo run build --filter=@infinitered/react-native-mlkit-docs",
"docs": "yarn workspace @infinitered/react-native-mlkit-docs start",
"test": "turbo run test -- --run-in-band",
"dev": "turbo run dev",
"lint": "turbo run lint",
"clean": "turbo run clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"setup": "./scripts/setup.sh",
"version": "changeset version && yarn install --mode update-lockfile",
"ci:build": "turbo run ci:build --filter=@infinitered/react-native-mlkit-core --no-cache && turbo run ci:build --filter=!@infinitered/react-native-mlkit-core --no-cache",
"ci:publish": "changeset publish",
"ci:push-tags": "git push --follow-tags",
"ci:trust": "./scripts/git-push-fork-to-upstream-repo.sh",
"release": "yarn ci:build && yarn ci:publish && yarn ci:push-tags",
"postinstall": "turbo ci:build"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@changesets/get-release-plan": "^3.0.17",
"@turbo/gen": "^1.9.7",
"@types/jest": "^29.5.5",
"eslint": "^8.0.0",
"execa": "^8.0.1",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^2.5.1",
"ts-jest": "^29.1.1",
"turbo": "latest",
"typescript": "^5.3.0"
},
"name": "react-native-mlkit",
"workspaces": [
"apps/*",
"modules/*",
"packages/*"
],
"packageManager": "[email protected]",
"repository": "https://www.github.com/infinitered/react-native-mlkit",
"homepage": "https://infinitered.github.io/react-native-mlkit",
"x": "http://localhost:3000/react-native-mlkit/face-detection/options/"
}