-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.01 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.01 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
{
"private": true,
"workspaces": {
"packages": [
"packages/*",
"docs",
"examples/*",
"examples/packages/*"
]
},
"scripts": {
"build:library": "yarn workspace @callstack/licenses build && yarn workspace react-native-legal build-plugins && yarn workspace license-kit build-library && yarn workspace react-native-legal build-library",
"build:visualizer": "yarn workspace @callstack/license-kit-visualizer build",
"lint:js": "eslint \"**/*.{js,ts,tsx}\"",
"lint:docs": "yarn workspace docs check",
"typescript": "yarn build:library && tsc --noEmit -p examples/bare-example/tsconfig.json && tsc --noEmit -p examples/expo-example/tsconfig.json",
"lint:android": "./scripts/lint-android.sh",
"lint:objc": "./scripts/lint-objc.sh",
"lint:swift": "./scripts/lint-swift.sh",
"format:docs": "yarn workspace docs format",
"format:android": "./scripts/format-android.sh",
"format:objc": "./scripts/format-objc.sh",
"format:swift": "./scripts/format-swift.sh",
"release": "changeset publish",
"version": "changeset version && yarn install --mode update-lockfile",
"changeset": "changeset"
},
"repository": "https://github.com/callstackincubator/react-native-legal",
"author": "Mateusz Mędrek <luigimario1913@gmail.com> (https://github.com/mateusz1913)",
"license": "MIT",
"bugs": {
"url": "https://github.com/callstackincubator/react-native-legal/issues"
},
"homepage": "https://github.com/callstackincubator/react-native-legal#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@callstack/eslint-config": "^13.0.2",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@commitlint/config-conventional": "17.6.6",
"commitlint": "17.6.6",
"eslint": "^8.46.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-prettier": "^5.5.3",
"lefthook": "1.12.2",
"prettier": "^3.6.2",
"typescript": "^5.8.3"
},
"packageManager": "yarn@4.9.2"
}