-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.83 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
{
"name": "react-select-draggable",
"version": "0.2.0",
"description": "Add orderable options feature to react-select",
"main": "dist/main.js",
"files": [
"dist/main.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"prepublishOnly": "npm run build"
},
"dependencies": {
"lodash-es": "^4.17.15",
"prop-types": "^15.7.2",
"react-dnd": "^10.0.0",
"react-dnd-html5-backend": "^10.0.0",
"react-select": "^3.0.0"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@testing-library/react": "^10.2.1",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"concurrently": "^5.2.0",
"cypress": "^4.7.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.0.1",
"ramda": "0.27.0",
"react-test-renderer": "^16.8.0",
"start-server-and-test": "^1.11.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ezr-ondrej/react-select-draggable.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"sortable",
"draggable",
"react",
"react-dnd",
"react-select"
],
"author": "Ondrej Ezr",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ezr-ondrej/react-select-draggable/issues"
},
"homepage": "https://github.com/ezr-ondrej/react-select-draggable#readme"
}