UNPKG

1.18 kBJSONView Raw
1{
2 "name": "react-dnd-html5-backend",
3 "version": "4.0.5",
4 "description": "HTML5 backend for React DnD",
5 "main": "lib/index.js",
6 "types": "lib/index.d.ts",
7 "license": "BSD-3-Clause",
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/react-dnd/react-dnd.git"
11 },
12 "scripts": {
13 "clean": "rimraf lib dist",
14 "transpile": "tsc",
15 "bundle:unmin": "webpack --mode development --output-filename=ReactDnDHTML5Backend.js",
16 "bundle:min": "webpack --mode production --output-filename=ReactDnDHTML5Backend.min.js",
17 "build": "run-p bundle:* transpile",
18 "test": "run-s clean build",
19 "watch": "tsc -w --preserveWatchOutput",
20 "start": "npm run watch"
21 },
22 "dependencies": {
23 "autobind-decorator": "^2.1.0",
24 "dnd-core": "^4.0.5",
25 "lodash": "^4.17.10",
26 "shallowequal": "^1.0.2"
27 },
28 "devDependencies": {
29 "@types/node": "10.3.2",
30 "@types/react": "^16.3.16",
31 "@types/shallowequal": "^0.2.2",
32 "npm-run-all": "^4.1.2",
33 "react": "^16.4.0",
34 "react-dnd": "^4.0.5",
35 "react-dnd-test-backend": "^4.0.5",
36 "rimraf": "^2.6.2",
37 "ts-loader": "^4.2.0",
38 "typescript": "^2.9.1",
39 "webpack": "^4.6.0"
40 },
41 "peerDependencies": {
42 "react": ">= 16.3"
43 }
44}