This repository has been archived by the owner on Feb 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
55 lines (55 loc) · 1.49 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
{
"name": "react-dnd-treeview",
"version": "0.4.1",
"description": "Tree view component with drag and drop support using react-dnd",
"main": "dist/react-dnd-treeview.js",
"typings": "dist/react-dnd-treeview.d.ts",
"files": [
"dist/react-dnd-treeview.js",
"dist/react-dnd-treeview.d.ts"
],
"scripts": {
"build": "./node_modules/.bin/webpack",
"watch": "./node_modules/.bin/webpack --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/teleport/react-dnd-treeview.git"
},
"keywords": [
"react",
"reactjs",
"treeview",
"dnd"
],
"author": "Teleport <[email protected]> (https://github.com/teleport)",
"license": "MIT",
"bugs": {
"url": "https://github.com/teleport/react-dnd-treeview/issues"
},
"homepage": "https://github.com/teleport/react-dnd-treeview/",
"devDependencies": {
"@types/classnames": "^0.0.31",
"@types/node": "^6.0.46",
"@types/react": "^0.14.44",
"@types/react-dnd": "^2.0.31",
"babel-core": "^6.0.20",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"copy-webpack-plugin": "^2.1.1",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.6.2",
"ts-loader": "^0.8.1",
"typescript": "^2.0.8",
"webpack": "^1.12.2"
},
"dependencies": {
"classnames": "^2.2.3",
"immutable": "^3.8.1",
"react": "^0.14.6",
"react-dnd": "^2.1.3"
}
}