-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.68 KB
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
{
"name": "@availity/date",
"version": "5.0.2",
"description": "Wrapper for react-dates to work with formik",
"keywords": [
"availity",
"formik",
"date"
],
"homepage": "https://availity.github.io/availity-react/form/date/index",
"bugs": {
"url": "https://github.com/Availity/availity-react/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Availity/availity-react.git",
"directory": "packages/date"
},
"license": "MIT",
"author": "Tyson Warner <tyson.warner@availity.com>",
"browser": "./dist/index.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup --loader \".js=jsx\" --dts",
"dev": "tsup src/index.js --format esm,cjs --loader \".js=jsx\" --watch --dts",
"clean": "rm -rf dist",
"clean:nm": "rm -rf node_modules",
"publish": "yarn npm publish --tolerate-republish --access public",
"publish:canary": "yarn npm publish --access public --tag canary"
},
"dependencies": {
"@availity/react-dates": "^21.13.1",
"classnames": "^2.5.1",
"lodash": "^4.18.1",
"moment": "^2.30.1",
"prop-types": "^15.8.1"
},
"devDependencies": {
"@availity/form": "workspace:*",
"@availity/yup": "^7.0.1",
"@types/react-dates": "^21.8.6",
"esbuild-sass-plugin": "^2.16.1",
"formik": "^2.4.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reactstrap": "^8.10.1",
"tsup": "^8.4.0",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@availity/form": "workspace:*",
"formik": "^2.4.6",
"react": "^18.0.0",
"reactstrap": "^8.10.1"
},
"publishConfig": {
"access": "public"
}
}