forked from hiwllc/datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.02 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
{
"name": "@uselessdev/datepicker",
"version": "2.5.0",
"description": "A simple react datepicker build with chakra-ui and date-fns",
"main": "dist/uselessdev-datepicker.cjs.js",
"module": "dist/uselessdev-datepicker.esm.js",
"types": "dist/uselessdev-datepicker.cjs.d.ts",
"repository": "git@github.com:uselessdev/datepicker.git",
"author": "Wallace Oliveira <wallacebatistaoliveira@gmail.com>",
"license": "Apache-2.0",
"private": false,
"files": [
"dist"
],
"scripts": {
"dev": "preconstruct dev",
"build": "preconstruct build",
"lint": "eslint ./src/**",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest",
"prepublish": "yarn build"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.6",
"@chakra-ui/storybook-addon": "^1.0.3",
"@emotion/jest": "^11.7.1",
"@emotion/react": "11.6.0",
"@emotion/styled": "11.6.0",
"@preconstruct/cli": "^2.1.5",
"@storybook/addon-actions": "^6.5.4",
"@storybook/addon-essentials": "^6.5.4",
"@storybook/addon-links": "^6.5.4",
"@storybook/react": "^6.5.4",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.34",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"all-contributors-cli": "^6.20.0",
"date-fns": "^2.25.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"framer-motion": "^6",
"jest": "^27.4.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^27.1.2",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"peerDependencies": {
"@chakra-ui/react": "^1.8.6 || ^2",
"date-fns": "^2.25.0",
"framer-motion": "^6",
"react": "^17.0.2 || ^18",
"react-dom": "^17.0.2 || ^18"
}
}