-
Notifications
You must be signed in to change notification settings - Fork 62
/
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": "draft-wysiwyg",
"version": "0.2.4",
"author": "Benjamin Kniffler",
"license": "MIT",
"repository": "https://github.com/bkniffler/draft-wysiwyg",
"main": "./lib",
"engines": {
"node": "5.x.x",
"npm": "3.x.x"
},
"keywords": [
"draftjs",
"draft-js",
"editor",
"wysiwyg",
"drag",
"drop",
"react",
"richtext"
],
"scripts": {
"start": "node ./example",
"build": "babel --presets es2015,stage-0,react src/ --out-dir lib/",
"heroku": "git push heroku master",
"start:production": "NODE_ENV=production node ./example",
"build:example": "gulp build",
"patch": "npm run build; npm version patch --force; npm publish"
},
"dependencies": {
"draft-js": "^0.7.0",
"draft-js-alignment-plugin": "^1.0.3",
"draft-js-cleanup-empty-plugin": "^1.0.2",
"draft-js-dnd-plugin": "^1.0.7",
"draft-js-entity-props-plugin": "^1.0.2",
"draft-js-focus-plugin": "^1.0.12",
"draft-js-image-plugin": "^1.0.3",
"draft-js-plugins-editor-wysiwyg": "^1.0.3",
"draft-js-resizeable-plugin": "^1.0.8",
"draft-js-table-plugin": "^1.0.4",
"draft-js-toolbar-plugin": "^1.0.5",
"immutable": "^3.7.4"
},
"devDependencies": {
"express": "^4.13.1",
"gulp": "^3.9.0",
"multer": "^1.1.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"superagent": "^1.8.0",
"wrappack": "^0.3.10"
}
}