-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.13 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
{
"name": "@yaldram/chakra-ui-clone",
"version": "1.0.0",
"description": "Chakra UI Elements Clone",
"author": "https://github.com/yaldram",
"license": "MIT",
"repository": "https://github.com/yaldram/chakra-ui-clone",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"source": "src/index.tsx",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc && vite build",
"commit": "git-cz",
"lint": "eslint . --color",
"lint:fix": "eslint . --fix",
"test:lint": "eslint .",
"pretty": "prettier . --write",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook"
},
"peerDependencies": {
"framer-motion": "^7.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.5",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"@storybook/addon-actions": "^7.0.0-rc.3",
"@storybook/addon-essentials": "^7.0.0-rc.3",
"@storybook/addon-interactions": "^7.0.0-rc.3",
"@storybook/addon-links": "^7.0.0-rc.3",
"@storybook/addons": "^7.0.0-rc.3",
"@storybook/jest": "^0.0.11-next.0",
"@storybook/react": "^7.0.0-rc.3",
"@storybook/react-vite": "^7.0.0-rc.3",
"@storybook/test-runner": "^0.10.0-next.11",
"@storybook/testing-library": "^0.0.14-next.1",
"@storybook/theming": "^7.0.0-rc.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.25",
"@types/styled-system": "^5.1.13",
"@types/tinycolor2": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"babel-eslint": "^10.0.3",
"commitizen": "^4.2.5",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.7.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"framer-motion": "^7.2.0",
"git-cz": "^4.9.0",
"husky": "^7.0.1",
"prettier": "^2.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.0-rc.3",
"styled-components": "^5.3.5",
"styled-system": "^5.1.5",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vite": "^4.2.0"
},
"dependencies": {
"@reach/alert": "^0.17.0",
"@styled-system/should-forward-prop": "^5.1.5",
"tinycolor2": "^1.4.2"
},
"lint-staged": {
"*.+(ts|tsx)": [
"eslint --fix"
],
"*.+(json|css|md)": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/yaldram"
}
}