forked from frontend-collective/react-sortable-tree
-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.55 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.55 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
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
121
122
123
{
"name": "@nosferatu500/react-sortable-tree",
"version": "5.0.0",
"description": "Drag-and-drop sortable component for nested data and hierarchies",
"homepage": "https://nosferatu500.github.io/react-sortable-tree",
"main": "lib/index.esm.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"clean-types": "rimraf lib/types",
"prebuild": "npm run clean",
"build": "rollup -c && npm run clean-types",
"build:compiler": "REACT_COMPILER=true rollup -c && npm run clean-types",
"lint": "eslint 'src/**/*.{ts,tsx}' --cache --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepublishOnly": "npm run build",
"deploy-storybook": "gh-pages -d storybook-static"
},
"files": [
"lib"
],
"engines": {
"node": ">=24.11"
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"bracketSameLine": true,
"tabWidth": 2,
"printWidth": 80
},
"repository": {
"type": "git",
"url": "git+https://github.com/nosferatu500/react-sortable-tree.git"
},
"keywords": [
"react",
"react-component",
"sortable-tree",
"virtual-tree"
],
"publishConfig": {
"access": "public"
},
"contributors": [
"Vitalii Shvetsov"
],
"author": "Chris Fritz",
"license": "MIT",
"bugs": "https://github.com/nosferatu500/react-sortable-tree/issues",
"devDependencies": {
"@babel/core": "^7.29.0",
"@chromatic-com/storybook": "^5.1.1",
"@eslint/compat": "^2.0.4",
"@eslint/eslintrc": "^3.3.5",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@storybook/addon-docs": "^10.3.4",
"@storybook/addon-links": "^10.3.4",
"@storybook/addon-webpack5-compiler-swc": "^4.0.3",
"@storybook/react-webpack5": "^10.3.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.4",
"eslint-config-airbnb-extended": "^3.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-storybook": "^10.3.4",
"eslint-plugin-unicorn": "^64.0.0",
"gh-pages": "^6.3.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dnd-touch-backend": "^16.0.1",
"react-dom": "^19.2.4",
"rollup": "^4.60.1",
"rollup-plugin-dts": "^6.4.1",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^10.3.4",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dnd": "^16.0.0",
"react-dnd-html5-backend": "^16.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"immer": "^11.1.4",
"react-dnd": "^16.0.0",
"react-dnd-html5-backend": "^16.0.0",
"virtua": "^0.49.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}