forked from kutlugsahin/react-smooth-dnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.25 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
{
"name": "react-smooth-dnd",
"version": "0.11.1",
"description": "Drag and Drop library",
"main": "./dist/index.js",
"scripts": {
"bundle": "rollup -c --environment INCLUDE_DEPS,BUILD:production",
"tsc": "tsc --emitDeclarationOnly --outDir dist",
"build": "npm run tsc && npm run bundle"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"react",
"sortable",
"drag and drop",
"drag&drop",
"drag",
"drop",
"draggable",
"dnd"
],
"author": {
"name": "Kutlu Sahin",
"email": "[email protected]"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/kutlugsahin/react-smooth-dnd.git"
},
"devDependencies": {
"@babel/core": "7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "7.3.3",
"rollup": "1.4.0",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-uglify": "6.0.2",
"typescript": "3.3.3333",
"@types/react": "^16.3.0"
},
"peerDependencies": {
"react": "^16.3.0"
},
"dependencies": {
"smooth-dnd": "0.12.1",
"prop-types":">=15.6.0"
}
}