forked from atlassian/react-beautiful-dnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.12 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
96
97
98
99
100
101
{
"name": "react-beautiful-dnd",
"version": "6.0.0",
"description": "Beautiful, accessible drag and drop for lists with React.js",
"author": "Alex Reardon <[email protected]>",
"keywords": [
"drag and drop",
"dnd",
"sortable",
"react",
"react.js",
"natural",
"beautiful"
],
"bugs": {
"url": "https://github.com/atlassian/react-beautiful-dnd/issues"
},
"main": "lib/index.js",
"module": "esm/index.js",
"sideEffects": false,
"files": [
"/lib",
"/dist",
"/esm",
"/src"
],
"scripts": {
"test": "jest --config ./jest.config.js",
"validate": "yarn run lint && yarn run typecheck",
"lint": "eslint .",
"typecheck": "flow check",
"build": "yarn run build:clean && yarn run build:lib && yarn run build:flow && yarn run build:dist && yarn run build:esm",
"build:clean": "rimraf lib && rimraf esm && rimraf dist",
"build:esm": "babel src -d esm",
"build:dist": "rollup -c && cross-env NODE_ENV=min rollup -c",
"build:lib": "cross-env NODE_ENV=cjs babel src -d lib",
"build:flow": "echo \"// @flow\n\nexport * from '../src';\" > lib/index.js.flow",
"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.6.0",
"raf-schd": "^2.1.0",
"react-motion": "^0.5.2",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"@atlaskit/css-reset": "^1.2.0",
"@storybook/react": "^3.2.16",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"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-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.5",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.6.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "0.61.0",
"jest": "^22.0.5",
"raf-stub": "^2.0.1",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2",
"rollup": "^0.56.2",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-strip": "^1.1.1",
"rollup-plugin-uglify": "^2.0.1",
"styled-components": "^3.2.0"
},
"peerDependencies": {
"react": ">=15.4.0 || ^16.0.0"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/atlassian/react-beautiful-dnd.git"
}
}