forked from JakeSidSmith/react-reorder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "react-reorder",
"version": "2.2.0",
"description": "Drag & drop, touch enabled, reorderable / sortable list, React component",
"author": "Jake 'Sid' Smith",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "http-server examples/ -c-1 -o",
"build-less": "lessc examples/src/less/index.less examples/build/css/index.css && echo 'Less compiled'",
"build-js": "browserify examples/src/js/index.js -o examples/build/js/index.js",
"watch-js": "watchify examples/src/js/index.js -o examples/build/js/index.js -v",
"build-dirs": "mkdir -p examples/build/css/ && mkdir -p examples/build/js/",
"build": "npm run build-dirs && npm run build-less && npm run build-js",
"watch": "npm run watch-js"
},
"bugs": "https://github.com/JakeSidSmith/react-reorder/issues",
"repository": {
"type": "git",
"url": "https://github.com/JakeSidSmith/react-reorder"
},
"keywords": [
"react",
"facebook",
"reorder",
"sort",
"reorderable",
"sortable",
"drag and drop",
"mobile",
"touch"
],
"dependencies": {
"create-react-class": "~15.5.2"
},
"devDependencies": {
"browserify": "=12.0.1",
"http-server": "=0.8.5",
"less": "=2.7.2",
"react": ">=0.14.7",
"react-dom": ">=0.14.7",
"watchify": "=3.6.1"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
}
}