forked from radix-ui/primitives
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.79 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.79 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"private": true,
"name": "primitives",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"lint": "pnpm -r run lint",
"types:check": "pnpm -r --parallel run typecheck",
"test": "vitest",
"test:ci": "vitest run && pnpm cypress:ci",
"storybook": "BROWSER=none pnpm --filter=@repo/storybook run dev -p 9009",
"storybook:build": "BROWSER=none pnpm --filter=@repo/storybook run build",
"storybook:serve": "pnpm --filter=@repo/storybook run serve",
"cypress:ci": "start-server-and-test 'pnpm dev' http://localhost:9009 'pnpm cypress:install && pnpm cypress:run'",
"cypress:install": "cypress install",
"cypress:run": "cypress run",
"cypress:dev": "cypress open",
"dev": "pnpm run storybook",
"dev:ssr": "pnpm --filter=@repo/ssr-testing dev",
"build-storybook": "pnpm --filter=@repo/storybook run build",
"build": "pnpm -r --parallel --filter \"./packages/**/*\" run build",
"clean": "pnpm -r run clean",
"reset": "rm -rf node_modules && pnpm -r run reset",
"bump:stable": "changeset version",
"bump:next": "changeset version --snapshot",
"bump:check": "changeset status --since=main",
"release:stable": "pnpm publish -r --access public",
"release:stable:ci": "pnpm publish -r --access public --publish-branch stable",
"release:next": "pnpm publish -r --access public --tag next",
"format": "prettier --write .",
"format:staged": "pretty-quick --staged"
},
"devDependencies": {
"@chance/eslint": "^1.1.0",
"@changesets/cli": "^2.29.7",
"@radix-ui/colors": "^3.0.0",
"@testing-library/cypress": "^10.1.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/fs-extra": "^11",
"@types/node": "^22",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/react-test-renderer": "^19.1.0",
"axe-core": "^4.11.0",
"cypress": "^15.5.0",
"cypress-axe": "1.7.0",
"cypress-real-events": "^1.15.0",
"eslint": "^9.38.0",
"eslint-plugin-cypress": "^5.2.0",
"execa": "^9.6.0",
"fs-extra": "^11.3.2",
"glob": "^10.2.2",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"pretty-quick": "^4.2.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-test-renderer": "^19.2.0",
"react-is": "^19.2.0",
"react-remove-scroll": "^2.6.3",
"replace-in-files": "^3.0.0",
"start-server-and-test": "^2.1.2",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^4.0.4",
"vitest-axe": "^1.0.0-pre.5"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.2.0",
"pnpm": {
"patchedDependencies": {
"@changesets/apply-release-plan": "patches/@changesets__apply-release-plan.patch"
}
}
}