forked from clauderic/react-sortable-hoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.85 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
{
"name": "react-sortable-hoc",
"version": "0.6.8",
"description": "Set of higher-order components to turn any list into a sortable, touch-friendly, animated list",
"author": {
"name": "Clauderic Demers",
"email": "me@ced.io"
},
"user": "clauderic",
"homepage": "https://github.com/clauderic/react-sortable-hoc",
"main": "dist/commonjs/index.js",
"jsnext:main": "dist/es6/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/clauderic/react-sortable-hoc.git"
},
"bugs": {
"url": "https://github.com/clauderic/react-sortable-hoc/issues"
},
"keywords": [
"react",
"reactjs",
"react-component",
"sortable",
"sortable-list",
"list",
"sortable list",
"smooth",
"animated",
"hoc",
"higher-order",
"component"
],
"scripts": {
"start": "webpack-dashboard -- node server.js",
"build": "npm run build:commonjs && npm run build:es6 && npm run build:umd",
"build:commonjs": "npm run clean:commonjs && cross-env BABEL_ENV=commonjs babel src --out-dir dist/commonjs --ignore *.example.js,*.test.js",
"build:es6": "npm run clean:es6 && cross-env BABEL_ENV=es6 BABEL_DISABLE_CACHE=1 babel src --out-dir dist/es6 --ignore *.test.js",
"build:umd": "cross-env NODE_ENV=production webpack --config webpack.config.umd.js && cross-env NODE_ENV=production webpack --config webpack.config.umd.js --minify",
"clean": "npm run clean:umd",
"clean:umd": "rimraf dist/umd",
"clean:es6": "rimraf dist/es6",
"clean:commonjs": "rimraf dist/commonjs",
"storybook": "start-storybook -p 9001",
"test": "eslint src/** --ext .js"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"invariant": "^2.2.1",
"lodash": "^4.12.0",
"prop-types": "^15.5.7"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@kadira/storybook": "^1.36.0",
"@kadira/storybook-deployer": "^1.0.0",
"autoprefixer": "^6.3.6",
"babel-cli": "^6.9.0",
"babel-core": "^6.3.15",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.0",
"babel-plugin-css-modules-transform": "^0.1.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.3.13",
"classnames": "^2.2.5",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"eslint": "^3.16.1",
"eslint-config-react-app": "^0.6.1",
"eslint-plugin-flowtype": "^2.21.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.4.1",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.16.1",
"isparta-loader": "^2.0.0",
"node-libs-browser": "^0.5.2",
"node-sass": "^3.7.0",
"postcss-loader": "^0.9.1",
"qs": "^6.2.0",
"raw-loader": "^0.5.1",
"react": "^15.4.2",
"react-addons-pure-render-mixin": "^15.0.2",
"react-addons-shallow-compare": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.4.2",
"react-infinite": "^0.9.2",
"react-tiny-virtual-list": "^2.0.1",
"react-virtualized": "^9.2.2",
"redux": "^3.5.2",
"rimraf": "^2.5.2",
"sass-loader": "^3.2.0",
"stack-source-map": "^1.0.4",
"style-loader": "^0.13.1",
"webpack": "^1.9.11",
"webpack-dashboard": "^0.2.1",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.9.1",
"yargs": "^4.7.1"
},
"xo": {
"esnext": true,
"extends": "xo-react"
}
}