-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.81 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
62
63
64
65
66
67
68
69
{
"name": "react-hook-resize-panel",
"version": "1.3.2",
"description": "Lightweight, strongly typed resizable panel component using react hooks",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest src",
"lint": "eslint",
"build": "rm -rf ./lib && tsc",
"prepare": "yarn build",
"prepublishOnly": "yarn lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpribyl/react-hook-resize-panel.git"
},
"keywords": [
"react",
"hook",
"hooks",
"resizable",
"panel",
"split",
"drag",
"resize"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
},
"author": "jpribyl",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^14.0.1",
"@types/react": "^18.0.12",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"create-react-app": "^5.0.1",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "^5.2.0",
"jest": "^27.5.1",
"prettier": "^2.6.1",
"react": "^18.2.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.3.0",
"testing-library": "^0.0.2",
"typescript": "^4.7.3"
},
"bugs": {
"url": "https://github.com/jpribyl/react-hook-resize-panel/issues"
},
"homepage": "https://github.com/jpribyl/react-hook-resize-panel#readme",
"directories": {
"example": "example",
"lib": "lib"
},
"dependencies": {
"react-draggable": "^4.4.5"
}
}