-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
107 lines (107 loc) · 2.98 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
105
106
107
{
"name": "h6s",
"private": true,
"description": "Serve headless component development kit for React production apps",
"keywords": [
"headless",
"react",
"cdk",
"calendar",
"fullcalendar",
"react-calendar",
"table",
"complex-table",
"merge table",
"react-table"
],
"author": "JaeYeopHan(Jbee)",
"organization": "h6s-dev",
"repository": {
"type": "git",
"url": "https://github.com/h6s-dev/h6s"
},
"homepage": "https://h6s.dev",
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@babel/core": "7.25.7",
"@babel/preset-env": "^7.25.3",
"@biomejs/biome": "1.8.3",
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "16.2.4",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@mdx-js/react": "2.3.0",
"@storybook/addon-actions": "7.6.6",
"@storybook/addon-docs": "7.6.6",
"@storybook/addon-essentials": "7.6.6",
"@storybook/addon-links": "7.6.6",
"@storybook/react": "7.6.6",
"@storybook/react-vite": "^7.6.4",
"@storybook/react-webpack5": "7.6.6",
"@storybook/theming": "7.6.6",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/node": "^22.5.2",
"@types/react": "^18.3.5",
"@types/testing-library__jest-dom": "6.0.0",
"acorn": "8.12.1",
"all-contributors-cli": "6.26.1",
"cz-conventional-changelog": "3.3.0",
"date-fns": "2.30.0",
"esbuild": "0.24.0",
"husky": "7.0.4",
"jsdom": "^24.1.1",
"lint-staged": "12.1.4",
"prettier": "3.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^7.6.4",
"ts-node": "10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vite": "^5.4.6",
"vitest": "^2.0.5"
},
"resolutions": {
"@types/node": "^22.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test-renderer": "^18.3.1",
"@types/react": "^18.3.3",
"typescript": "^5.5.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "6.4.8",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"jsdom": "^24.1.1",
"vite": "^5.4.6",
"vitest": "^2.0.5"
},
"workspaces": [
"packages/*",
"examples/*",
"website"
],
"scripts": {
"check": "yarn typecheck && yarn lint && yarn test",
"lint": "yarn workspaces foreach -ptR --from '@h6s/*' run lint",
"test": "yarn workspaces foreach -ptR --from '@h6s/*' run test",
"typecheck": "yarn workspaces foreach -ptR --from '@h6s/*' run typecheck",
"build": "yarn workspaces foreach -ptR --from '@h6s/*' run build",
"build:storybook": "storybook build",
"storybook": "storybook dev -p 6006 --quiet",
"postinstall": "husky install"
},
"packageManager": "[email protected]"
}