-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
36 lines (36 loc) · 1.54 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
{
"name": "capacitor-mlkit",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"verify": "npm run verify:android && npm run verify:ios && npm run verify:web",
"verify:android": "turbo run verify:android --concurrency=1 --no-cache",
"verify:ios": "turbo run verify:ios --concurrency=1 --no-cache",
"verify:web": "turbo run verify:web --no-cache",
"lint": "turbo run lint",
"fmt": "turbo run fmt",
"docgen": "turbo run docgen",
"build": "turbo run build",
"ios:pod:install": "turbo run ios:pod:install --concurrency=1 --no-cache",
"affected:verify": "npm run affected:verify:android && npm run affected:verify:ios && npm run affected:verify:web",
"affected:verify:android": "turbo run verify:android --since=origin/main --concurrency=1 --no-cache",
"affected:verify:ios": "turbo run verify:ios --since=origin/main --concurrency=1 --no-cache",
"affected:verify:web": "turbo run verify:web --since=origin/main --no-cache",
"affected:lint": "turbo run lint --since=origin/main",
"affected:fmt": "turbo run fmt --since=origin/main",
"affected:docgen": "turbo run docgen --since=origin/main",
"affected:build": "turbo run build --since=origin/main",
"changeset": "changeset",
"release": "npm run build && changeset publish",
"release:preview": "pkg-pr-new publish './packages/*'"
},
"devDependencies": {
"@changesets/cli": "2.21.1",
"@robingenz/changelog-github": "0.0.1",
"pkg-pr-new": "0.0.20",
"turbo": "1.1.6"
}
}