This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
69 lines (69 loc) · 1.84 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
{
"name": "draft-js-editor",
"version": "1.12.4",
"description": "A rich text editor built using draft js",
"bugs": {
"url": "https://github.com/AlastairTaft/draft-js-editor/issues",
"email": "alastair@fleep.io"
},
"keywords": [
"draftjs",
"editor",
"react",
"richtext"
],
"main": "lib/Editor.js",
"files": [
"lib/",
"src/"
],
"author": "alastair@fleep.io",
"repository": {
"type": "git",
"url": "https://github.com/AlastairTaft/draft-js-editor.git"
},
"scripts": {
"start": "npm run build:package:watch",
"build:package": "npm run clean & babel src --out-dir lib",
"build:package:watch": "npm run clean & babel src --out-dir lib --watch",
"build:dist": "NODE_ENV=development webpack",
"build:dist:min": "NODE_ENV=production webpack",
"build": "npm run clean && npm run build:package && npm run build:dist && npm run build:dist:min",
"prepublish": "npm run build",
"clean": "rimraf lib"
},
"dependencies": {
"prop-types": "^15.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.3.14",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.3.19",
"classnames": "^2.1.3",
"draft-js": "^0.10.4",
"es6-shim": "^0.35.0",
"eslint": "^1.0.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^3.2.0",
"express": "^4.13.1",
"gh-pages": "^0.12.0",
"katex": "^0.5.1",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-router": "^2.6.1",
"rimraf": "^2.6.2",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.9.4"
},
"peerDependencies": {
"draft-js": "^0.10",
"react": "^16",
"react-dom": "^16"
}
}