-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
97 lines (97 loc) · 2.94 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "last-draft",
"version": "3.3.0",
"description": "Last Draft... A Draft.js Editor",
"main": "lib/index.js",
"scripts": {
"test": "tape test/index.js",
"lint": "standard 'src/**/*.js'; exit 0",
"lint:fix": "standard --fix 'src/**/*.js'; exit 0",
"build": "rm -rf lib && babel src --out-dir lib --copy-files && npm run styles",
"styles": "cp -r example/styles lib && rm lib/styles/example.css",
"site": "NODE_ENV=prod webpack --config example/webpack.config.prod",
"dev": "NODE_ENV=dev webpack-dev-server --port 3000 --inline --hot --config example/webpack.config"
},
"standard": {
"parser": "babel-eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/vacenz/last-draft"
},
"author": "Steven Iseki <stevenisekimartin@gmail.com>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.7.6",
"babel-cli": "^6.18.0",
"babel-core": "^6.7.6",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-webpack-loaders": "^0.9.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"babel-runtime": "^6.6.1",
"css-loader": "^0.26.1",
"draft-convert": "^1.4.3",
"draft-js": "0.10.1",
"enzyme": "^2.7.1",
"expect": "^1.20.2",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^2.0.0",
"html-webpack-plugin": "^2.16.0",
"jsdom": "^9.11.0",
"postcss-loader": "^1.3.3",
"react": "15.5.0",
"react-addons-test-utils": "15.5.0",
"react-dom": "15.5.0",
"standard": "^8.6.0",
"style-loader": "^0.13.2",
"styled-components": "2.1.0",
"tape": "^4.6.3",
"webpack": "^2.2.1",
"webpack-dev-server": "2.1.0-beta.12",
"webpack-visualizer-plugin": "^0.1.11"
},
"peerDependencies": {
"draft-convert": "^1.4.3",
"draft-js": "0.10.1",
"immutable": "3.7.4",
"react": "15.5.0",
"react-dom": "15.5.0",
"styled-components": "2.1.0"
},
"dependencies": {
"draft-js-color-picker-plugin": "1.2.0",
"draft-js-link-plugin": "1.2.2",
"draft-js-embed-plugin": "1.2.0",
"last-draft-js-sidebar-plugin": "1.2.0",
"last-draft-js-toolbar-plugin": "1.2.0",
"draft-js-alignment-plugin": "2.0.0-rc2",
"draft-js-drag-n-drop-plugin": "2.0.0-rc2",
"draft-js-emoji-plugin": "2.0.0-rc2",
"draft-js-focus-plugin": "2.0.0-rc2",
"draft-js-hashtag-plugin": "2.0.0-rc2",
"draft-js-image-plugin": "2.0.0-rc2",
"draft-js-linkify-plugin": "2.0.0-rc2",
"draft-js-mention-plugin": "2.0.0-rc2",
"draft-js-plugins-editor": "2.0.0-rc2",
"draft-js-resizeable-plugin": "2.0.0-rc2"
},
"keywords": [
"ld",
"last draft",
"last-draft",
"draft-js",
"draft-js-plugins",
"draftjs plugins",
"draftjs",
"draft.js",
"editor",
"richtext",
"react"
]
}