forked from h6s-dev/h6s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.6 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
108
109
110
111
112
113
114
115
116
117
118
119
{
"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",
"lint-staged": {
"packages/**/*.ts": [
"eslint -c .eslintrc '{src}/**/*.{js,jsx,ts,tsx}' --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@babel/core": "7.16.7",
"@commitlint/cli": "16.0.2",
"@commitlint/config-conventional": "16.0.0",
"@emotion/react": "11.7.1",
"@emotion/styled": "11.6.0",
"@mdx-js/react": "1.6.22",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.2",
"@semantic-release/npm": "8.0.3",
"@semantic-release/release-notes-generator": "10.0.3",
"@storybook/addon-actions": "6.4.9",
"@storybook/addon-docs": "6.4.9",
"@storybook/addon-essentials": "6.4.9",
"@storybook/addon-links": "6.4.9",
"@storybook/react": "6.4.9",
"@storybook/theming": "6.4.9",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.4",
"@testing-library/react-hooks": "7.0.2",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.4.0",
"@types/react": "17.0.43",
"@types/testing-library__jest-dom": "5.14.2",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"@yarnpkg/esbuild-plugin-pnp": "2.0.0",
"@yarnpkg/pnpify": "3.1.1-rc.9",
"acorn": "8.7.0",
"all-contributors-cli": "6.20.0",
"concurrently": "6.5.1",
"cz-conventional-changelog": "3.3.0",
"date-fns": "2.28.0",
"esbuild": "0.14.11",
"eslint": "8.6.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-react-app": "7.0.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "25.3.4",
"eslint-plugin-jest-dom": "4.0.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-testing-library": "5.0.1",
"framer-motion": "5.5.5",
"husky": "7.0.4",
"jest": "27.4.5",
"lint-staged": "12.1.4",
"prettier": "2.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-test-renderer": "17.0.2",
"rimraf": "3.0.2",
"semantic-release": "18.0.1",
"semantic-release-monorepo": "7.0.5",
"ts-jest": "27.1.2",
"ts-node": "10.4.0",
"typescript": "4.5.4"
},
"workspaces": [
"packages/*",
"examples/*",
"website"
],
"scripts": {
"storybook": "start-storybook -p 6006 --quiet",
"lint": "yarn workspaces foreach -pt --from '@h6s/*' run lint",
"test": "yarn workspaces foreach -pt --from '@h6s/*' run test",
"typecheck": "yarn workspaces foreach -pt --from '@h6s/*' run typecheck",
"semantic-release": "yarn workspaces foreach --from '@h6s/*' run semantic-release",
"build": "yarn workspaces foreach -ptR --from '@h6s/*' run build",
"build:storybook": "build-storybook",
"postinstall": "husky install"
},
"packageManager": "[email protected]"
}