-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.64 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.64 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
{
"private": true,
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@evilmartians/lefthook": "^1.11.16",
"@react-native/babel-preset": "^0.81.0",
"@react-native/eslint-config": "^0.81.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.0",
"@types/react-test-renderer": "^19.1.0",
"commitlint": "^19.8.1",
"del-cli": "^6.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-ft-flow": "^3.0.11",
"eslint-plugin-prettier": "^5.5.1",
"jest": "^30.0.4",
"prettier": "^3.6.2",
"react-test-renderer": "19.0.0",
"ts-jest": "^29.4.0",
"turbo": "^1.13.4",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "pnpm run -r build",
"build:watch": "pnpm run -r --parallel build:watch",
"build:docs": "pnpm -F @ottrelite/docs run build",
"lint": "pnpm run -r lint",
"typecheck": "pnpm run -r typecheck",
"test": "pnpm run -r test",
"docs:dev": "pnpm -F @ottrelite/docs run dev",
"clean": "pnpm run -r --parallel run clean",
"release": "npx changeset publish",
"version": "npx changeset version && pnpm install --lockfile-only",
"changeset": "npx changeset",
"example:android": "pnpm -F @ottrelite/example run android",
"example:ios": "pnpm -F @ottrelite/example run ios",
"pod:install": "cd examples/rn-app && pod install",
"publish:npm": "pnpm -r publish:npm",
"publish:yalc": "pnpm -r publish:yalc"
},
"packageManager": "pnpm@10.18.3"
}