-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.65 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.65 KB
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
{
"name": "react-draft-editor",
"version": "1.0.0",
"description": "React + Redux compatible implementation of DraftJS",
"main": "./index.js",
"scripts": {
"eslint": "eslint lib pub/client pub/server",
"examples": "webpack --config pub/server/config/webpack/index.js",
"start": "npm run examples && node pub/server/app"
},
"author": {
"name": "Jonathan Perry for Sequence Media Limited",
"email": "sequencemedia@sequencemedia.net",
"url": "http://sequencemedia.net"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JonathanPerryRMA/react-draft-editor.git"
},
"license": "UNLICENSED",
"dependencies": {
"draft-js": "^0.8.1",
"draft-js-export-html": "^0.4.0",
"draft-js-export-markdown": "^0.2.0",
"html-to-react": "^1.0.0"
},
"peerDependencies": {
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-react-jsx": "^6.4.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.3.13",
"babel-register": "^6.9.0",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-standard": "^1.3.2",
"react": "^15.2.1",
"standard": "^7.1.2"
},
"devDependencies": {
"babel-loader": "^6.2.5",
"express": "^4.14.0",
"json-loader": "^0.5.4",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-router": "^2.7.0",
"webpack": "^1.13.2"
}
}