-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
73 lines (73 loc) · 2.21 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
{
"name": "react-draggable-list",
"version": "4.0.1",
"description": "Make a list of draggable collapsible items.",
"main": "js/index.js",
"sideEffects": false,
"scripts": {
"prepare": "rimraf js && babel -s inline -d js/ src/ --ignore '**/*.test.js' && flow-copy-source -v src js --ignore '**/*.test.*'",
"example-build": "parcel build example/main.js -d example/dist --public-url .",
"example-watch": "parcel watch example/main.js -d example/dist --no-hmr --public-url .",
"test": "yarn run lint && yarn run flow_check && jest && tsc",
"flow_check": "flow check",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StreakYC/react-draggable-list.git"
},
"keywords": [
"react",
"react-component",
"animation",
"reorder",
"move",
"drag-and-drop",
"draggable"
],
"author": "Chris Cowan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/StreakYC/react-draggable-list/issues"
},
"homepage": "https://github.com/StreakYC/react-draggable-list#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/react": "^16.4.18",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-add-module-exports": "^1.0.0",
"classnames": "^2.2.3",
"eslint": "^5.5.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.87.0",
"flow-copy-source": "^2.0.2",
"jest": "^23.6.0",
"parcel-bundler": "^1.10.3",
"pdelay": "^2.0.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"rimraf": "^2.6.1",
"typescript": "^3.1.6"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"immutability-helper": "^2.1.2",
"prop-types": "^15.6.0",
"react-motion": "^0.5.2",
"react-multi-ref": "^1.0.0"
},
"peerDependencies": {
"react": "^16.6.0"
}
}