forked from nosferatu500/react-sortable-tree
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.55 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
{
"name": "@nosferatu500/react-sortable-tree",
"version": "5.0.0-alpha.7",
"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/utils && rimraf lib/node-renderer-default.d.ts && rimraf lib/placeholder-renderer-default.d.ts && rimraf lib/react-sortable-tree.d.ts && rimraf lib/tree-node.d.ts && rimraf lib/tree-placeholder.d.ts",
"prebuild": "npm run clean",
"build": "rollup -c && npm run clean-types",
"lint": "eslint '*.{js,json}' 'src/**/*.{ts,tsx}' --cache",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepublishOnly": "npm run build",
"deploy-storybook": "gh-pages -d storybook-static"
},
"files": [
"lib"
],
"engines": {
"node": ">=20.9"
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"bracketSameLine": true,
"tabWidth": 2,
"printWidth": 80
},
"repository": {
"type": "git",
"url": "https://github.com/nosferatu500/react-sortable-tree"
},
"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": {
"@chromatic-com/storybook": "^1.6.1",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-actions": "^8.2.9",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/react": "^8.2.9",
"@storybook/react-webpack5": "^8.2.9",
"@types/lodash.isequal": "^4.5.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-sonarjs": "^1.0.4",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-unicorn": "^55.0.0",
"gh-pages": "^6.1.1",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dnd-touch-backend": "^14.1.1",
"react-dom": "^18.3.1",
"rollup": "^4.21.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^8.2.9",
"typescript": "^5.5.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dnd": "14.0.4",
"react-dom": "^18.2.0"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"react-dnd": "14.0.4",
"react-dnd-html5-backend": "^14.1.0",
"virtua": "^0.33.7"
},
"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"
]
}
}