forked from atlassian/react-beautiful-dnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 4.78 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
125
126
127
128
129
130
131
132
133
134
135
{
"name": "react-beautiful-dnd",
"version": "10.0.4",
"description": "Beautiful and accessible drag and drop for lists with React",
"author": "Alex Reardon <[email protected]>",
"keywords": [
"drag and drop",
"dnd",
"sortable",
"reorder",
"reorderable",
"react",
"react.js",
"natural",
"beautiful"
],
"repository": {
"type": "git",
"url": "https://github.com/atlassian/react-beautiful-dnd.git"
},
"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}"
},
"scripts": {
"test": "jest --config ./jest.config.js",
"test:ci": "jest test --maxWorkers=2",
"test:browser": "testcafe 'chrome:headless,chrome:headless:emulation:device=iphone 6;touch=true' ./test/browser/* -r spec,xunit:./test-reports/browser/test-results.xml",
"test:browser:local": "testcafe 'chrome' ./test/browser/*",
"test:coverage": "yarn test --coverage --coveragePathIgnorePatterns=/debug",
"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 \"./**/*.{js,jsx}\"",
"lint:css": "stylelint \"stories/**/*.{js,jsx}\"",
"typecheck": "flow check --max-warnings=0",
"bundle-size:check": "cross-env SNAPSHOT=match yarn bundle-size:update",
"bundle-size:update": "yarn build:clean && 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",
"build-storybook": "build-storybook -c .storybook -o site",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.3.0",
"css-box-model": "^1.1.1",
"memoize-one": "^5.0.0",
"prop-types": "^15.6.1",
"raf-schd": "^4.0.0",
"react-redux": "^5.0.7",
"redux": "^4.0.1",
"tiny-invariant": "^1.0.3"
},
"devDependencies": {
"@atlaskit/css-reset": "^3.0.5",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@emotion/core": "0.x",
"@storybook/addon-options": "^4.1.11",
"@storybook/addons": "^4.1.11",
"@storybook/react": "^4.1.7",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-styled-components": "^1.10.0",
"cross-env": "^5.2.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"flow-bin": "0.91.0",
"globby": "^9.0.0",
"jest": "^23.6.0",
"jest-junit": "^6.0.1",
"jest-watch-typeahead": "^0.2.0",
"prettier": "^1.16.0",
"raf-stub": "^2.0.2",
"react": "16.4.2",
"react-dom": "16.4.2",
"react-test-renderer": "16.4.2",
"rimraf": "^2.6.3",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-size-snapshot": "^0.8.0",
"rollup-plugin-strip": "^1.2.1",
"rollup-plugin-uglify": "^6.0.1",
"styled-components": "^4.1.3",
"stylelint": "9.10.1",
"stylelint-config-prettier": "^4.0.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.2",
"testcafe": "^0.23.3",
"testcafe-reporter-xunit": "^2.1.0",
"wait-port": "^0.2.2"
},
"peerDependencies": {
"react": "^16.3.1"
},
"license": "Apache-2.0",
"jest-junit": {
"output": "test-reports/junit/js-test-results.xml"
}
}