forked from primetwig/react-nestable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.26 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
{
"name": "react-nestable",
"version": "1.3.0",
"description": "Drag & drop hierarchical list made as a react component",
"main": "dist/index.js",
"scripts": {
"prestart": "npm run build",
"start": "node tools/devServer.js",
"clean": "rimraf ./dist",
"webpack": "webpack --colors --progress",
"build": "babel src -d dist",
"build:html": "cpy ./**/*.html ../dist/ --cwd=src --parents",
"build:css": "cpy ./**/*.css ../dist/ --cwd=src --parents",
"build:images": "cpy ./**/*.svg ../dist/ --cwd=src --parents",
"prebuild": "npm run clean && mkdirp dist",
"postbuild": "npm run build:html && npm run build:css && npm run build:images && npm run webpack",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"autoprefixer": "6.4.0",
"autoprefixer-loader": "^3.1.0",
"babel-cli": "^6.26.0",
"babel-core": "6.14.0",
"babel-eslint": "^8.2.5",
"babel-loader": "6.2.5",
"babel-plugin-transform-class-properties": "6.11.5",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"cpy": "^3.4.1",
"cpy-cli": "^2.0.0",
"css-loader": "0.24.0",
"eslint": "^5.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-standard": "^3.1.0",
"file-loader": "0.9.0",
"nib": "^1.1.2",
"rimraf": "2.5.4",
"style-loader": "0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.3.1",
"url-loader": "0.5.7",
"webpack": "1.13.2",
"webpack-dev-server": "1.15.1",
"webpack-hot-middleware": "^2.12.2"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-addons-shallow-compare": "^15.3.1",
"react-addons-update": "^15.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/primetwig/react-nestable"
},
"keywords": [
"react",
"nestable",
"react-nestable",
"sortable",
"dragndrop",
"draggable"
],
"author": "primetwig",
"license": "ISC"
}