forked from minop1205/react-dnd-treeview
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.28 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
{
"name": "@minoru/react-dnd-treeview",
"description": "A draggable / droppable React-based treeview component.",
"version": "1.5.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/minop1205/react-dnd-treeview.git"
},
"author": "Minoru Okuyama <[email protected]> (https://github.com/minop1205/)",
"homepage": "https://github.com/minop1205/react-dnd-treeview",
"keywords": [
"drag and drop",
"dnd",
"react",
"treeview",
"component",
"headless component",
"touch support"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"immer": "^9.0.5",
"react-dnd": "^14.0.3",
"react-dnd-html5-backend": "^14.0.1",
"react-dnd-multi-backend": "^6.0.2",
"react-dnd-touch-backend": "^14.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.18",
"@types/react-beautiful-dnd": "^13.1.1",
"@types/react-dnd-multi-backend": "^6.0.1",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"jest": "^27.0.6",
"npm-check-updates": "^11.8.3",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.56.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"lint": "npx tsc -p . --noEmit && npx eslint --ext .tsx --ext .ts --fix src/",
"prepublish": "rm -rf ./dist && npm run build",
"test": "jest"
},
"bugs": {
"url": "https://github.com/minop1205/react-dnd-treeview/issues",
"email": "[email protected]"
}
}