-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.77 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.77 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
{
"name": "uniqueui-monorepo",
"version": "1.0.0",
"private": true,
"scripts": {
"build:registry": "ts-node scripts/build-registry.ts",
"test:e2e:shadcn": "npx ts-node scripts/test-shadcn-all-components.ts",
"test": "turbo run test",
"test:ci": "pnpm --dir packages/cli test && pnpm --dir apps/www test",
"lint": "pnpm --dir apps/www lint",
"build": "turbo run build",
"typecheck": "pnpm --dir packages/cli exec tsc --noEmit && pnpm --dir apps/www exec tsc --noEmit",
"changeset": "changeset",
"version-packages": "changeset version && node scripts/sync-root-changelog.mjs",
"release": "pnpm build:registry && pnpm --dir packages/cli build && changeset publish",
"prepare": "husky",
"precommit": "./scripts/pre-commit.sh",
"changelog:verify": "bash scripts/verify-changelog.sh",
"docs:metadata-friction": "node scripts/docs-metadata-friction.mjs",
"changeset:quality": "node scripts/verify-changeset-quality.mjs"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.0",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"clsx": "^2.1.1",
"fs-extra": "^11.2.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lucide-react": "^0.562.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwind-merge": "^3.4.0",
"ts-node": "^10.9.2",
"turbo": "^2.3.3",
"typescript": "^5.3.3",
"vitest": "^4.0.18",
"vitest-fetch-mock": "^0.4.5"
},
"engines": {
"node": "24.x"
},
"packageManager": "pnpm@10.33.0",
"dependencies": {
"motion": "^12.26.0"
}
}