-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "react-sortable",
"version": "2.0.0",
"description": "Make your React components sortable.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"build:standalone": "webpack --config ./webpack.standalone.js",
"preversion": "npm run build",
"start": "npm run build -- --watch",
"dev": "webpack-dev-server --config ./webpack.devConfig.js",
"test": "jest --verbose",
"selenium": "./node_modules/.bin/wdio ./webdriver/wdio-local.conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/danielstocks/react-sortable/"
},
"keywords": [
"React",
"sortable",
"sorting",
"drag",
"drop",
"dragndrop",
"draganddrop"
],
"author": "Daniel Stocks <daniel@webcloud.se>",
"license": "MIT",
"dependencies": {
"react": "16.x.x",
"react-dom": "16.x.x"
},
"devDependencies": {
"babel-cli": "6.26.x",
"babel-core": "6.26.x",
"babel-jest": "21.x.x",
"babel-loader": "7.1.x",
"babel-preset-es2015": "6.24.x",
"babel-preset-react": "6.24.x",
"babel-preset-stage-0": "6.24.x",
"jest-cli": "21.x.x",
"react": "16.x.x",
"react-dom": "16.x.x",
"react-redux": "5.0.6",
"redux": "3.7.2",
"wdio-jasmine-framework": "0.3.x",
"webdriverio": "4.9.x",
"webpack": "3.9.x",
"webpack-dev-server": "2.9.x"
}
}