-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 2.5 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
{
"name": "react-ymd-date-select",
"version": "0.3.0",
"description": "Helper hooks and components for Y-M-D dropdowns with React",
"keywords": [
"date",
"date-picker",
"select"
],
"homepage": "https://whitphx.github.io/react-ymd-date-select/",
"bugs": {
"url": "https://github.com/whitphx/react-ymd-date-select/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/whitphx/react-ymd-date-select.git"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist/"
],
"scripts": {
"dev": "vite",
"build": "tsc -p ./tsconfig.website.json && vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"tsc:lib": "tsc -p ./lib/tsconfig.json --noEmit",
"build:lib": "yarn run build:lib:esm && yarn run build:lib:cjs",
"build:lib:esm": "tsc -p ./src/tsconfig.json",
"build:lib:cjs": "tsc -p ./src/tsconfig.cjs.json",
"fix:eslint": "eslint --fix '{src,website}/**/*.{ts,tsx}'",
"fix:prettier": "prettier --write .",
"check:eslint": "eslint '{src,website}/**/*.{ts,tsx}'",
"check:prettier": "prettier --check .",
"prepare": "husky install"
},
"dependencies": {
"date-fns": "^2.28.0"
},
"devDependencies": {
"@chakra-ui/icons": "^2.0.10",
"@chakra-ui/react": "^2.3.4",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@mdx-js/react": "^2.1.1",
"@mdx-js/rollup": "^2.1.1",
"@mui/material": "^5.10.5",
"@testing-library/react": "^13.1.1",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"@vitejs/plugin-react": "^1.0.7",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.4",
"formik": "^2.2.9",
"framer-motion": "^6",
"happy-dom": "^2.55.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "2.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-hook-form": "^7.28.0",
"react-live-runner": "^1.0.4",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vite-tsconfig-paths": "^3.4.1",
"vitest": "^0.7.0"
},
"peerDependencies": {
"react": "^16.9.0 || ^17 || ^18",
"react-dom": "^16.9.0 || ^17 || ^18"
},
"resolutions": {
"csstype": "3.0.10"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,md,json}": "prettier --write"
}
}