forked from neolution-ch/react-hook-form-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.88 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
114
115
116
117
118
119
120
{
"name": "@neolution-ch/react-hook-form-components",
"version": "2.8.0",
"description": "a collection of react hook form components to reduce boilerplate and figuring out how to integrate react hook form with other libraries",
"homepage": "https://neolution-ch.github.io/react-hook-form-components",
"repository": {
"type": "git",
"url": "git+https://github.com/neolution-ch/react-hook-form-components"
},
"license": "MIT",
"author": "Neolution",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.modern.js",
"require": "./dist/index.js",
"styles": "./dist/styles.css"
},
"./styles": "./dist/styles.css",
"./styles.css": "./dist/styles.css"
},
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"jsnext:main": "dist/index.modern.js",
"types": "dist/index.d.ts",
"styles": "./dist/styles.css",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"build-storybook": "build-storybook",
"lint": "eslint \"**/*.{ts,tsx}\" --cache --max-warnings 0",
"prepack": "yarn build",
"prepare-pr": "yarn prettier . --write && yarn lint && yarn build && yarn test\"",
"prettier-check": "prettier --check .",
"prettier-write": "prettier --write .",
"start": "rollup -c -w",
"start-all": "concurrently \"yarn start\" \"yarn start-yalc\"",
"start-yalc": "yarn nodemon --watch dist -x \"yarn yalc push\"",
"storybook": "start-storybook -p 6006"
},
"dependencies": {
"classnames": "^2.3.2",
"date-fns-tz": "^2.0.0",
"react-bootstrap-typeahead": "^6.1.2",
"react-datepicker": "^4.11.0",
"react-number-format": "^5.1.4",
"use-debounce": "^9.0.4",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@popperjs/core": "^2.11.7",
"@release-it/keep-a-changelog": "^3.1.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/react": "^6.5.13",
"@types/node": "^18.16.3",
"@types/react": "^18.2.5",
"@types/react-datepicker": "^4.11.2",
"@types/react-dom": "^18.2.3",
"@types/reactstrap": "^8.7.2",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"bootstrap": "^5.2.3",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"date-fns": "^2.30.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.12",
"gh-pages": "^5.0.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"reactstrap": "^9.1.9",
"release-it": "^15.10.3",
"rollup": "^3.21.4",
"rollup-plugin-import-css": "^3.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"shx": "^0.3.4",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^5.0.4",
"webpack": "^5.82.0",
"yalc": "^1.0.0-pre.53"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-hook-form": "^7.0.0",
"reactstrap": "^8.0.0 || ^9.0.0"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}