-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.77 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
{
"name": "react-virtual-drag-list",
"version": "2.7.4",
"description": "A virtual scrolling list component that can be sorted by dragging",
"main": "dist/virtual-drag-list.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"lint": "eslint --fix src --ext .js",
"build": "rollup --config",
"core:update": "git submodule update --remote",
"docs:dev": "cross-env APP_ROOT=dumi dumi dev",
"docs:build": "cross-env APP_ROOT=dumi dumi build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mfuu/react-virtual-drag-list.git"
},
"keywords": [
"sort",
"drag",
"drop",
"sortable",
"draggable",
"virtual",
"virtual-list",
"big-data",
"big-list",
"infinite"
],
"author": "mfuu",
"license": "MIT",
"bugs": {
"url": "https://github.com/mfuu/react-virtual-drag-list/issues"
},
"homepage": "https://github.com/mfuu/react-virtual-drag-list#readme",
"dependencies": {
"sortable-dnd": "^0.6.20"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/react": "^18.3.12",
"cross-env": "^7.0.3",
"dumi": "^2.4.14",
"mockjs": "^1.1.0",
"prettier": "^2.8.8",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^2.69.2",
"rollup-plugin-dts": "^4.2.0",
"ts-loader": "^9.2.6",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
}
}