forked from jpuri/react-draft-wysiwyg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.33 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-draft-wysiwyg",
"version": "1.0.0",
"description": "A wysiwyg on top of DraftJS.",
"main": "dist/react-draft-wysiwyg.js",
"repository": {
"type": "git",
"url": "https://github.com/jpuri/react-draft-wysiwyg.git"
},
"author": "Jyoti Puri",
"devDependencies": {
"autoprefixer": "^6.5.1",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"css-loader": "^0.25.0",
"draft-js": "^0.9.1",
"draftjs-to-html": "0.3.7",
"draftjs-to-markdown": "0.0.4",
"enzyme": "^2.4.1",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-mocha": "^4.5.1",
"eslint-plugin-react": "^6.2.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"flow-bin": "^0.33.0",
"html-webpack-plugin": "^2.24.0",
"immutable": "^3.8.1",
"jsdom": "^9.8.0",
"mocha": "^3.1.0",
"postcss-loader": "^1.0.0",
"precss": "^1.4.0",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"rimraf": "^2.5.4",
"sinon": "^1.17.6",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.0"
},
"dependencies": {
"classnames": "^2.2.5",
"draftjs-utils": "0.3.2",
"immutable": "^3.8.1"
},
"peerDependencies": {
"draft-js": "^0.9.x",
"react": "0.13.x || 0.14.x || ^15.0.0-0 || 15.x",
"react-dom": "0.13.x || 0.14.x || ^15.0.0-0 || 15.x"
},
"scripts": {
"clean": "rimraf dist",
"build:webpack": "NODE_ENV=production webpack --config config/webpack.prod.config.js",
"build": "npm run clean && npm run build:webpack",
"test": "BABEL_ENV=test mocha --compilers js:config/test-compiler.js config/test-setup.js js/**/*Test.js",
"lint": "eslint js",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"check": "npm run lint && npm run flow",
"start": "node config/server.dev.js"
},
"license": "MIT"
}