-
Notifications
You must be signed in to change notification settings - Fork 904
/
Copy pathpackage.json
104 lines (104 loc) · 3.49 KB
/
package.json
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"private": true,
"name": "primitives",
"version": "0.1.0-rc.1",
"license": "MIT",
"workspaces": [
"apps/*",
"internal/*",
"packages/*/*"
],
"scripts": {
"lint": "yarn workspaces foreach -pvW --exclude primitives run lint",
"types:check": "tsc --skipLibCheck --noEmit",
"test": "vitest",
"test:ci": "yarn types:check && vitest run && yarn cypress:ci",
"storybook": "BROWSER=none storybook dev -p 9009",
"cypress:ci": "start-server-and-test storybook http://localhost:9009 cypress:run",
"cypress:run": "cypress run",
"cypress:dev": "cypress open",
"dev": "yarn storybook",
"dev:ssr": "yarn workspace @repo/ssr-testing dev",
"build-storybook": "storybook build",
"build": "node build.mjs",
"publish:stable": "yarn bump:stable && yarn clean && yarn build && yarn workspaces foreach -pvW --include @radix-ui/\\* --include radix-ui npm publish --tolerate-republish --access public",
"publish:next": "yarn bump:next && yarn clean && yarn build && yarn workspaces foreach -pvW --include @radix-ui/\\* --include radix-ui npm publish --tolerate-republish --access public --tag next",
"clean": "yarn workspaces foreach -pvW --include @radix-ui/\\* --include radix-ui run clean",
"reset": "yarn clean && rm -rf node_modules .yarn/cache",
"bump:stable": "yarn version apply --all",
"bump:next": "yarn version apply --all --prerelease",
"bump:check": "yarn version check",
"format": "prettier --write ."
},
"devDependencies": {
"@chance/eslint": "^1.1.0",
"@changesets/cli": "^2.27.11",
"@radix-ui/colors": "^3.0.0",
"@storybook/addon-essentials": "^8.5.0",
"@storybook/addon-storysource": "^8.5.0",
"@storybook/addon-webpack5-compiler-swc": "^2.0.0",
"@storybook/manager-api": "^8.5.0",
"@storybook/react": "^8.5.0",
"@storybook/react-webpack5": "^8.5.0",
"@storybook/test": "^8.5.0",
"@storybook/theming": "^8.5.0",
"@testing-library/cypress": "^10.0.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/fs-extra": "^11",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@types/react-test-renderer": "^19.0.0",
"cypress": "^14.0.0",
"cypress-real-events": "^1.14.0",
"esbuild": "0.24.2",
"eslint": "^9.18.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-storybook": "^0.11.2",
"execa": "^9.5.2",
"fs-extra": "^11.1.1",
"glob": "^10.2.2",
"husky": "^4.3.6",
"jsdom": "^26.0.0",
"lint-staged": "^10.5.3",
"prettier": "^3.4.2",
"pretty-quick": "^4.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-test-renderer": "^19.0.0",
"replace-in-files": "^3.0.0",
"start-server-and-test": "2.0.3",
"storybook": "^8.5.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.2",
"vitest-axe": "^1.0.0-pre.5"
},
"resolutions": {
"chokidar": "3.4.3"
},
"engines": {
"node": ">=12",
"yarn": ">=2"
},
"prettier": {
"trailingComma": "es5",
"printWidth": 100,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged",
"pre-push": "yarn types:check && yarn bump:check"
}
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --quiet --fix --cache"
},
"packageManager": "[email protected]",
"stableVersion": "0.0.0"
}