-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.41 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
{
"name": "react-draggable-list",
"version": "4.2.1",
"description": "Make a list of draggable collapsible items.",
"main": "dist/src/index.js",
"sideEffects": false,
"scripts": {
"prepare": "rimraf dist && babel -s true -d dist/src/ src/ -x .ts,.tsx --ignore '**/*.test.tsx' && tsc",
"example-build": "esbuild example/main.tsx --bundle --outdir=example/dist --public-path=.",
"example-watch": "npm example-build --watch",
"test": "npm run lint && flow check && jest && tsc --noEmit",
"lint": "eslint . --ext js,jsx,ts,tsx",
"lint-fix": "eslint . --ext js,jsx,ts,tsx --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StreakYC/react-draggable-list.git"
},
"keywords": [
"react",
"react-component",
"animation",
"reorder",
"move",
"drag-and-drop",
"draggable"
],
"files": [
"dist",
"index.js.flow"
],
"author": "Chris Cowan <agentme49@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/StreakYC/react-draggable-list/issues"
},
"homepage": "https://github.com/StreakYC/react-draggable-list#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@types/classnames": "^2.2.9",
"@types/jest": "^29.5.12",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/react-motion": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"babel-jest": "^29.7.0",
"babel-plugin-add-module-exports": "^1.0.0",
"classnames": "^2.2.3",
"esbuild": "^0.19.10",
"eslint": "^8.21.0",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.184.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"pdelay": "^2.0.0",
"prettier": "~2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^5.0.5",
"typescript": "^5.8.3"
},
"resolutions": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@types/prop-types": "^15.7.3",
"immutability-helper": "^3.0.0",
"prop-types": "^15.6.0",
"react-motion": "^0.5.2",
"react-multi-ref": "^1.0.0"
},
"peerDependencies": {
"react": "^16.6.0 || ^17.0.0"
}
}