-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.6 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
{
"name": "@rmr/use-dropdown",
"version": "0.8.16",
"description": "",
"source": "src/useDropdown.ts",
"main": "lib/index.js",
"module": "lib/module.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/RedMadRobot/use-dropdown"
},
"bugs": {
"url": "https://github.com/RedMadRobot/use-dropdown/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"react",
"hook",
"dropdown",
"use-dropdown"
],
"homepage": "https://redmadrobot.github.io/use-dropdown/?path=/docs/readme--page",
"scripts": {
"build": "parcel build",
"lint": "eslint \"./src/**/*.{ts,tsx}\"",
"test": "jest src/",
"start": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"storybook": "start-storybook -p 6006"
},
"files": [
"**/*.d.ts",
"**/*.js",
"**/*.js.map",
"!**/*.test.*",
"!coverage/**/*",
"!jest.config.js",
"!notify.js"
],
"author": {
"name": "eden lane",
"email": "[email protected]"
},
"contributors": [
{
"name": "pbuba",
"email": "[email protected]",
"url": "https://github.com/pbuba"
}
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.3",
"@juggle/resize-observer": "^3.3.1",
"@parcel/transformer-typescript-types": "^2.3.2",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-docs": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/addons": "^6.3.3",
"@storybook/react": "^6.3.12",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@testing-library/user-event": "^13.1.9",
"@types/jest": "^26.0.0",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.9",
"@types/resize-observer-browser": "^0.1.6",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"babel-loader": "^8.1.0",
"classnames": "^2.3.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.2.3",
"jest": "^26.0.1",
"parcel": "^2.3.2",
"prettier": "2.2.1",
"react": "17.0.2",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.4",
"react-merge-refs": "^1.1.0",
"react-popper": "^2.2.5",
"react-test-renderer": "~16.13.1",
"tailwindcss": "^2.2.19",
"ts-jest": "^26.1.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5"
},
"peerDependencies": {
"react": "^17.0.2"
}
}