forked from react-dnd/react-dnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.44 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
{
"name": "react-dnd-master",
"version": "2.2.2",
"description": "React-DnD Monorepo",
"repository": {
"type": "git",
"url": "https://github.com/react-dnd/react-dnd.git"
},
"keywords": [
"react",
"reactjs",
"file",
"drag",
"drop",
"html5",
"draggable",
"droppable",
"drag-and-drop",
"dnd",
"javascript",
"react-component",
"hoc"
],
"author": "Dan Abramov <[email protected]> (http://github.com/gaearon)",
"contributors": [
"Chris Trevino <[email protected]> (http://github.com/darthtrevino)",
"Jordan Gensler (http://github.com/kesne)",
"Gagan (https://github.com/thetechie)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/react-dnd/react-dnd/issues"
},
"homepage": "https://github.com/react-dnd/react-dnd",
"scripts": {
"start": "./scripts/startSiteDevServer.sh",
"build-site": "./scripts/buildStaticSite.sh",
"publish-site": "./scripts/publishStaticSite.sh",
"postinstall": "lerna bootstrap",
"unit_test": "jest",
"jest:watch": "jest --watch",
"jest:cov": "jest --coverage",
"lint": "eslint .",
"test_modules": "lerna run test",
"test": "npm-run-all lint jest:cov test_modules"
},
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"css-loader": "^0.26.1",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^1.0.1",
"faker": "^3.1.0",
"file-loader": "^0.9.0",
"html-loader": "^0.4.4",
"jest": "^18.1.0",
"karma-sourcemap-loader": "^0.3.6",
"lerna": "^2.0.0-beta.38",
"less": "^2.7.2",
"less-loader": "^2.0.0",
"marked": "^0.3.6",
"npm-run-all": "^4.0.1",
"null-loader": "^0.1.0",
"postcss": "^5.2.12",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-frame-component": "^1.0.1",
"react-hot-loader": "^1.2.3",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"url-loader": "^0.5.5",
"webpack": "^1.8.11",
"webpack-dev-server": "^1.8.2"
}
}