forked from react-dnd/react-dnd
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 2.53 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "preact-dnd",
"version": "2.1.6",
"description": "Drag and Drop for Preact (port from React DnD)",
"main": "lib/index.js",
"scripts": {
"start": "./scripts/startSiteDevServer.sh",
"build-site": "./scripts/buildStaticSite.sh",
"publish-site": "./scripts/publishStaticSite.sh",
"build": "./scripts/build.sh",
"lint": "eslint .",
"test": "karma start",
"prepublish": "npm run build && npm test"
},
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/NekR/preact-dnd/"
},
"keywords": [
"react",
"reactjs",
"file",
"drag",
"drop",
"html5",
"draggable",
"droppable",
"drag-and-drop",
"dnd",
"javascript",
"preact-component",
"hoc"
],
"author": "Dan Abramov <[email protected]> (http://github.com/gaearon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/NekR/preact-dnd/issues"
},
"homepage": "https://github.com/NekR/preact-dnd/",
"dependencies": {
"disposables": "^1.0.1",
"dnd-core": "^2.0.1",
"hoist-non-react-statics": "^1.2.0",
"invariant": "^2.1.0",
"lodash": "^4.2.0"
},
"devDependencies": {
"animation-frame": "^0.2.4",
"autoprefixer": "^5.0.0",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.9.1",
"eslint": "^1.6.0",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.5.1",
"expect": "^1.6.0",
"extract-text-webpack-plugin": "^0.3.8",
"faker": "^2.1.3",
"file-loader": "^0.8.1",
"glob": "^4.3.5",
"html-loader": "^0.2.3",
"karma": "^0.13.10",
"karma-chrome-launcher": "^0.2.1",
"karma-cli": "^0.1.1",
"karma-mocha": "^0.2.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"less": "^2.2.0",
"less-loader": "^2.0.0",
"marked": "^0.3.2",
"mocha": "^2.2.5",
"null-loader": "^0.1.0",
"postcss": "^4.0.2",
"preact": "^8.2.4",
"react": "^15.0.0-rc.2",
"react-dnd-html5-backend": "^2.1.2",
"react-dnd-test-backend": "^1.0.2",
"react-dom": "^15.0.0-rc.2",
"react-hot-loader": "^1.2.3",
"react-router": "~0.13.2",
"request": "2.46.0",
"style-loader": "^0.8.3",
"url-loader": "^0.5.5",
"webpack": "^1.8.11",
"webpack-dev-server": "^1.8.2"
}
}