-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.22 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
53
54
55
56
57
58
59
60
61
62
{
"name": "rozenite-monorepository",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"prepare": "lefthook install",
"rozenite": "node packages/cli/bin.js",
"build:all": "turbo run build",
"build:affected": "turbo run build --affected",
"typecheck:all": "turbo run typecheck",
"typecheck:affected": "turbo run typecheck --affected",
"lint:all": "turbo run lint",
"lint:affected": "turbo run lint --affected",
"format:all": "oxfmt --check .",
"format:all:fix": "oxfmt --write .",
"test:all": "turbo run test",
"test:affected": "turbo run test --affected",
"checks:all": "pnpm typecheck:all && pnpm lint:all && pnpm format:all",
"checks:affected": "turbo run typecheck lint --affected && pnpm format:all",
"release:plan": "changeset status",
"release:check": "pnpm turbo run typecheck build lint test",
"release:build": "pnpm build:all",
"release:publish": "changeset publish --no-git-tag",
"release:run": "node scripts/release/release.mjs",
"start:playground": "pnpm --filter @rozenite/playground start",
"start:playground:android": "pnpm --filter @rozenite/playground android",
"start:playground:ios": "pnpm --filter @rozenite/playground ios",
"start:ui-storybook": "pnpm --filter ui-storybook storybook"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.8.0",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/node": "18.16.9",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/ui": "^3.0.0",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-storybook": "^10.5.6",
"expo": "^57.0.7",
"jiti": "2.4.2",
"jsdom": "~22.1.0",
"jsonc-eslint-parser": "^2.1.0",
"lefthook": "^2.1.10",
"oxfmt": "^0.62.0",
"tslib": "^2.3.0",
"turbo": "^2.4.0",
"typescript": "~5.8.2",
"typescript-eslint": "^8.29.0",
"vite": "catalog:",
"vite-plugin-dts": "~4.5.0",
"vitest": "^3.0.0"
},
"packageManager": "pnpm@11.21.0"
}