-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.56 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
{
"name": "react-native-nitro-geolocation-monorepo",
"version": "0.1.1",
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"docs"
],
"homepage": "react-native-nitro-geolocation.pages.dev",
"scripts": {
"build:all": "nx run-many -t build",
"typecheck": "nx run-many -t typecheck",
"deadcode": "knip --include files,dependencies,unlisted,binaries,unresolved,duplicates --no-config-hints",
"deadcode:prod": "knip --production --include dependencies,unlisted,binaries,unresolved,duplicates --no-config-hints",
"pack:check": "node scripts/check-pack.mjs",
"source-lines:check": "node scripts/check-source-lines.mjs",
"format": "biome format --write .",
"format:check": "biome ci --formatter-enabled=true --linter-enabled=false .",
"lint": "biome ci --formatter-enabled=false --linter-enabled=true .",
"lint:fix": "biome check --write .",
"test:unit": "yarn workspace react-native-nitro-geolocation test",
"test:e2e:web": "yarn workspace react-native-nitro-geolocation-web-e2e build",
"test:e2e:web:android": "yarn workspace react-native-nitro-geolocation-example test:e2e:web:android",
"test:e2e:web:ios": "yarn workspace react-native-nitro-geolocation-example test:e2e:web:ios",
"test:e2e:android": "yarn workspace react-native-nitro-geolocation-example test:e2e:android",
"test:e2e:ios": "yarn workspace react-native-nitro-geolocation-example test:e2e:ios"
},
"packageManager": "yarn@4.9.4",
"devDependencies": {
"@changesets/cli": "^2.29.7",
"knip": "^6.14.1",
"nx": "^22.3.3"
}
}