forked from atlassian/react-beautiful-dnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.21 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
{
"name": "react-beautiful-dnd",
"version": "1.0.3",
"description": "Beautiful, accessible drag and drop for lists with React.js",
"author": "Alex Reardon <[email protected]>",
"keywords": [
"drag and drop",
"dnd",
"react",
"react.js",
"natural",
"beautiful"
],
"bugs": {
"url": "https://github.com/atlassian/react-beautiful-dnd/issues"
},
"main": "lib/index.js",
"scripts": {
"test": "jest --config ./jest.config.js",
"validate": "yarn run lint && yarn run typecheck",
"lint": "eslint src test stories",
"typecheck": "flow check",
"build": "babel src -d lib",
"storybook": "start-storybook -p 9002",
"build-storybook": "build-storybook -c .storybook -o site",
"prepublish": "yarn run build"
},
"dependencies": {
"babel-runtime": "6.26.0",
"invariant": "2.2.2",
"memoize-one": "3.0.1",
"prop-types": "15.5.10",
"prop-types-extra": "1.0.1",
"raf-schd": "2.0.1",
"react-motion": "0.5.0",
"react-redux": "5.0.6",
"redux": "^3.6.0",
"redux-thunk": "2.2.0",
"reselect": "3.0.1"
},
"devDependencies": {
"@atlaskit/css-reset": "1.1.5",
"@storybook/react": "3.2.5",
"babel-cli": "6.26.0",
"babel-eslint": "7.2.3",
"babel-plugin-react-flow-props-to-prop-types": "0.15.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-export-extensions": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-flow": "6.23.0",
"babel-preset-react": "6.24.1",
"enzyme": "2.9.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jest": "20.0.3",
"eslint-plugin-jsx-a11y": "5",
"eslint-plugin-react": "7.1.0",
"flow-bin": "0.52.0",
"jest": "20.0.4",
"raf-stub": "2.0.1",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-test-renderer": "15.6.1",
"styled-components": "2.1.2"
},
"peerDependencies": {
"react": "15.6.1"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/atlassian/react-beautiful-dnd.git"
}
}