-
-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 2.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 2.08 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
{
"name": "capacitor-plugins",
"private": true,
"packageManager": "npm@8.3.0",
"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 --env-mode=loose",
"verify:ios": "turbo run verify:ios --concurrency=1 --no-cache --env-mode=loose",
"verify:web": "turbo run verify:web --no-cache --env-mode=loose",
"lint": "turbo run lint",
"fmt": "turbo run fmt",
"docgen": "turbo run docgen",
"build": "turbo run build",
"version": "turbo run version",
"ios:pod:install": "turbo run ios:pod:install --concurrency=1 --no-cache",
"ios:spm:install": "turbo run ios:spm: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 --affected --concurrency=1 --no-cache --env-mode=loose",
"affected:verify:ios": "turbo run verify:ios --affected --concurrency=1 --no-cache --env-mode=loose",
"affected:verify:web": "turbo run verify:web --affected --no-cache --env-mode=loose",
"affected:lint": "turbo run lint --affected",
"affected:fmt": "turbo run fmt --affected",
"affected:docgen": "turbo run docgen --affected",
"affected:build": "turbo run build --affected",
"affected:version": "turbo run version --since=affected",
"affected:ios:pod:install": "turbo run ios:pod:install --affected --concurrency=1 --no-cache",
"affected:ios:spm:install": "turbo run ios:spm:install --affected --concurrency=1 --no-cache",
"changeset": "changeset",
"release": "npm run build && changeset publish",
"release:preview": "pkg-pr-new publish './packages/*'",
"postinstall": "patch-package"
},
"devDependencies": {
"@changesets/cli": "2.29.8",
"@ionic/swiftlint-config": "2.0.0",
"@robingenz/changelog-github": "0.0.1",
"patch-package": "8.0.1",
"pkg-pr-new": "0.0.20",
"prettier-plugin-java": "2.6.7",
"turbo": "2.6.3"
}
}