This repository has been archived by the owner on Jun 13, 2023. It is now read-only.
forked from brandonmowat/react-beautiful-dnd
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
124 lines (124 loc) · 4.35 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "react-beautiful-dnd",
"version": "8.0.3",
"description": "Beautiful, accessible drag and drop for lists with React.js",
"author": "Alex Reardon <areardon@atlassian.com>",
"keywords": [
"drag and drop",
"dnd",
"sortable",
"reorder",
"reorderable",
"react",
"react.js",
"natural",
"beautiful"
],
"bugs": {
"url": "https://github.com/atlassian/react-beautiful-dnd/issues"
},
"main": "dist/react-beautiful-dnd.cjs.js",
"module": "dist/react-beautiful-dnd.esm.js",
"sideEffects": false,
"files": [
"/dist",
"/src"
],
"config": {
"prettier_target": "*.{js,jsx,md,json} src/**/*.{js,jsx,md,json} test/**/*.{js,jsx,md,json} docs/**/*.{js,jsx,md,json} stories/**/*.{js,jsx,md,json} website/src/**/*.{js,jsx,md,json}"
},
"scripts": {
"test": "jest --config ./jest.config.js",
"validate": "yarn prettier:check && yarn lint:eslint && yarn lint:css && yarn typecheck",
"prettier:check": "yarn prettier --debug-check $npm_package_config_prettier_target",
"prettier:write": "yarn prettier --write $npm_package_config_prettier_target",
"lint:eslint": "yarn eslint .",
"lint:css": "stylelint \"stories/**/*.{js,jsx}\"",
"typecheck": "flow check",
"bundle-size:check": "cross-env SNAPSHOT=match yarn build:dist && yarn build:clean",
"bundle-size:update": "yarn build:dist && yarn build:clean",
"build": "yarn build:clean && yarn build:dist && yarn build:flow",
"build:clean": "rimraf dist",
"build:dist": "rollup -c",
"build:flow": "echo \"// @flow\n\nexport * from '../src';\" > dist/react-beautiful-dnd.cjs.js.flow",
"storybook": "start-storybook -p 9002 & opn http://localhost:9002",
"build-storybook": "build-storybook -c .storybook -o site",
"website:start": "cd website && yarn develop",
"website:build": "cd website && yarn build",
"prepare": "cd website && yarn",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@babel/runtime": "7.0.0-beta.52",
"css-box-model": "^1.0.0",
"memoize-one": "^4.0.0",
"prop-types": "^15.6.1",
"raf-schd": "^3.0.1",
"react-motion": "^0.5.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"tiny-invariant": "^0.0.3"
},
"devDependencies": {
"@atlaskit/css-reset": "^2.0.7",
"@babel/core": "^7.0.0-beta.52",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.52",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.52",
"@babel/plugin-transform-modules-commonjs": "^7.0.0-beta.52",
"@babel/plugin-transform-runtime": "^7.0.0-beta.52",
"@babel/preset-env": "^7.0.0-beta.52",
"@babel/preset-flow": "^7.0.0-beta.52",
"@babel/preset-react": "^7.0.0-beta.52",
"@storybook/react": "^3.4.8",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.2.0",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-styled-components": "^1.5.1",
"cross-env": "^5.2.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.1",
"eslint-plugin-react": "^7.10.0",
"flow-bin": "0.75.0",
"jest": "^23.2.0",
"jest-watch-typeahead": "^0.1.0",
"opn-cli": "^3.1.0",
"prettier": "^1.13.7",
"puppeteer": "^1.5.0",
"raf-stub": "^2.0.2",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-test-renderer": "^16.3.1",
"rimraf": "^2.6.2",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^4.0.0-beta.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-size-snapshot": "^0.6.0",
"rollup-plugin-strip": "^1.1.1",
"rollup-plugin-uglify": "^4.0.0",
"styled-components": "^3.3.3",
"stylelint": "9.3.0",
"stylelint-config-prettier": "^3.3.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.3.1"
},
"peerDependencies": {
"react": "^16.3.1"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/atlassian/react-beautiful-dnd.git"
}
}