generated from Dhaiwat10/react-library-starter
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
113 lines (113 loc) · 3.36 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
{
"name": "chakra-ui-carousel",
"version": "1.0.14",
"description": "An experiment for tight-knit Chakra+Formik integration with a familiar API",
"keywords": [
"chakra",
"chakra-ui",
"carousel"
],
"main": "dist/chakra-ui-carousel.cjs.js",
"module": "dist/chakra-ui-carousel.esm.js",
"types": "dist/chakra-ui-carousel.cjs.d.ts",
"author": "Nazeeh Vahora",
"homepage": "https://github.com/Nazeeh21/Chakra-UI-Carousel",
"repository": "github:nazeeh21/chakra-ui-carousel",
"bugs": {
"url": "https://github.com/Nazeeh21/Chakra-UI-Carousel/issues"
},
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "preconstruct build",
"build:clean": "rimraf dist && preconstruct build",
"lint": "eslint ./src --ext .ts,.tsx",
"release": "changeset publish",
"test": "jest",
"type-check": "tsc --noEmit",
"prepare": "husky install",
"storybook": "start-storybook -p 9001 -s ./src/_/ .storybook",
"build-storybook": "build-storybook",
"chromatic": "chromatic --exit-zero-on-changes"
},
"peerDependencies": {
"@chakra-ui/icons": "^2.1.0",
"@chakra-ui/react": "^2.8.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"framer-motion": "^10.15.1",
"react": "^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@chakra-ui/core": "^0.8.0",
"@chakra-ui/icons": "^2.1.0",
"@chakra-ui/react": "^2.8.0",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@preconstruct/cli": "^2.8.1",
"@storybook/addon-actions": "^7.2.3",
"@storybook/addon-essentials": "^7.2.3",
"@storybook/addon-links": "^7.2.3",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^7.2.3",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"autoprefixer": "^10.4.15",
"babel-jest": "^29.6.2",
"chromatic": "^6.21.0",
"eslint": "^8.47.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jest-dom": "^5.0.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.13",
"formik": "^2.4.3",
"framer-motion": "^10.15.1",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lint-staged": ">=14",
"msw": "^1.2.3",
"postcss-flexbugs-fixes": "^5.0.2",
"prettier": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6",
"yup": "^1.2.0"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.ts"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint --cache --fix",
"prettier --write"
],
"*.{yml,json,md}": "prettier --write"
},
"dependencies": {
"rooks": "^7.14.1"
}
}