This repository has been archived by the owner on Jul 24, 2019. It is now read-only.
forked from michelson/dante2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.43 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
{
"name": "Dante2",
"version": "0.4.4",
"description": "Dante wysiwyg rewritten in draft-js",
"author": "Miguel Michelson",
"license": "GPL-3.0",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"module": "es/index.js",
"files": [
"amd",
"lib",
"dist",
"es"
],
"scripts": {
"start": "node_modules/.bin/webpack-dev-server --hot --inline --config webpack.config-doc.js",
"build": "babel-node tools/build-cli.js",
"lint": "eslint app tools webpack *.js",
"release": "release",
"publish": "npm run build && git add . && git commit -m 'build' && git push origin master"
},
"peerDependencies": {
"react": "~16.0.0",
"react-dom": "~16.0.0"
},
"dependencies": {
"axios": "^0.15.2",
"babel-runtime": "^6.11.6",
"draft-convert": "^2.1.2",
"draft-js": "0.10.4",
"draft-js-custom-styles": "^2.0.4",
"immutable": "^3.8.2"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-istanbul": "^1.0.3",
"babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
"babel-plugin-transform-es3-property-literals": "^6.8.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.13.0",
"babel-register": "^6.11.6",
"babel-standalone": "^6.21.1",
"child-process-promise": "^2.2.0",
"colors": "^1.1.2",
"cross-env": "^3.1.4",
"css-loader": "^0.25.0",
"eslint": "^4.19.1",
"eslint-loader": "1.1.0",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "2.1.2",
"file-loader": "^0.9.0",
"fs-promise": "^1.0.0",
"html-webpack-plugin": "^2.24.1",
"lodash": "^4.17.4",
"node-sass": "^4.5.3",
"react": "~16.0.0",
"react-dom": "~16.0.0",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.2.1",
"yargs": "3.32.0"
},
"repository": {
"type": "git",
"url": "https://github.com/michelson/Dante2.git"
},
"keywords": [
"dante",
"dante2",
"react",
"wysiwyg",
"draft-js"
],
"bugs": {
"url": "https://github.com/Michelson/Dante2/issues"
},
"homepage": "https://github.com/michelson/Dante2"
}