forked from clauderic/react-sortable-hoc
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
109 lines (109 loc) · 3.17 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
{
"name": "@fellow/react-sortable-hoc",
"version": "1.10.1-1",
"description": "Set of higher-order components to turn any list into a sortable, touch-friendly, animated list",
"author": {
"name": "Clauderic Demers",
"email": "[email protected]"
},
"user": "aminland",
"homepage": "https://github.com/aminland/react-sortable-hoc",
"source": "src/index.js",
"main": "dist/react-sortable-hoc.js",
"umd:main": "dist/react-sortable-hoc.umd.js",
"module": "dist/react-sortable-hoc.esm.js",
"jsnext:main": "dist/react-sortable-hoc.esm.js",
"types": "types/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aminland/react-sortable-hoc.git"
},
"bugs": {
"url": "https://github.com/aminland/react-sortable-hoc/issues"
},
"keywords": [
"react",
"reactjs",
"react-component",
"sortable",
"sortable-list",
"list",
"sortable list",
"smooth",
"animated",
"hoc",
"higher-order",
"component"
],
"scripts": {
"start": "start-storybook -p 9001 -c .storybook",
"build": "rollup -c",
"test": "eslint src/** --ext .js --quiet",
"release": "standard-version --no-verify"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"invariant": "^2.2.4",
"prop-types": "^15.5.7"
},
"peerDependencies": {
"prop-types": "^15.5.7",
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-options": "^5.1.11",
"@storybook/react": "^5.1.11",
"@storybook/theming": "^5.1.11",
"array-move": "^1.0.0",
"autoprefixer": "^6.3.6",
"babel-loader": "^8.0.5",
"babel-plugin-transform-async-to-promises": "^0.8.4",
"classnames": "^2.2.5",
"css-loader": "^2.1.0",
"eslint": "^6.2.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-shopify": "^30.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.16.1",
"husky": "^3.0.4",
"lodash": "^4.12.0",
"node-sass": "^4.11.0",
"postcss": "^7.0.7",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "^16.7.0",
"react-addons-pure-render-mixin": "^15.0.2",
"react-addons-shallow-compare": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^16.7.0",
"react-infinite": "^0.13.0",
"react-inspector": "^3.0.2",
"react-tiny-virtual-list": "^2.0.1",
"react-virtualized": "^9.2.2",
"react-window": "^1.6.2",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-filesize": "^6.0.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.0",
"sass-loader": "^7.1.0",
"standard-version": "^4.4.0",
"style-loader": "^0.23.1"
}
}