-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
87 lines (87 loc) · 2.34 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
{
"name": "@chakra-ui/pro-theme",
"version": "0.10.0",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"dev": "pnpm storybook:dev",
"lint": "eslint --ext .ts,.tsx src",
"build": "vite build",
"storybook:dev": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@chakra-ui/anatomy": "2.1.1",
"@chakra-ui/styled-system": "2.9.1",
"@chakra-ui/theme-tools": "2.0.18"
},
"devDependencies": {
"@chakra-ui/react": "2.7.1",
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@fontsource-variable/open-sans": "5.0.6",
"@fontsource-variable/spline-sans": "5.0.5",
"@release-it/keep-a-changelog": "4.0.0",
"@storybook/addon-docs": "7.0.27",
"@storybook/addon-essentials": "7.0.27",
"@storybook/addons": "7.0.27",
"@storybook/api": "7.0.27",
"@storybook/blocks": "7.0.27",
"@storybook/components": "7.0.27",
"@storybook/react": "7.0.27",
"@storybook/react-vite": "7.0.27",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"@vitejs/plugin-react": "4.0.3",
"eslint": "8.44.0",
"eslint-plugin-react": "7.32.2",
"framer-motion": "10.12.18",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"prettier": "3.0.0",
"prettier-plugin-organize-imports": "3.2.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.10.1",
"release-it": "16.1.0",
"remark-gfm": "3.0.1",
"storybook": "7.0.27",
"vite": "4.4.3",
"vite-plugin-dts": "3.2.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json}": [
"prettier --plugin prettier-plugin-organize-imports --write"
]
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"packageManager": "[email protected]"
}