This repository has been archived by the owner on May 24, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
104 lines (104 loc) · 3.16 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
98
99
100
101
102
103
104
{
"name": "Dante2",
"version": "0.5.0-rc26",
"description": "Dante wysiwyg rewritten in draft-js",
"author": "Miguel Michelson",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/michelson/dante2.git"
},
"bugs": {
"url": "https://github.com/michelson/dante2/issues"
},
"homepage": "https://michelson.github.io/dante2",
"main": "package/Dante.cjs.js",
"jsnext:main": "package/es/components/Dante/index.js",
"module": "package/Dante.es.js",
"browser": "package/umd/Dante.js",
"files": [
"package/umd",
"package/lib",
"package/dist",
"package/es"
],
"keywords": [
"dante",
"dante2",
"react",
"wysiwyg",
"draft-js"
],
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@emotion/cache": "^10.0.14",
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.14",
"autoprefixer": "^9.1.0",
"babel-plugin-prismjs": "^1.0.2",
"bulma": "^0.7.1",
"child-process-promise": "^2.2.1",
"css-loader": "^1.0.0",
"docz": "^0.10.3",
"docz-plugin-css": "^0.10.3",
"emotion-theming": "^10.0.14",
"fs-promise": "^2.0.3",
"gh-pages": "^1.2.0",
"node-sass": "^4.9.3",
"polished": "^3.4.0",
"react-powerplug": "^1.0.0-rc.1",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^4.0.0-beta.8",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.6.2",
"rollup-plugin-resolve": "^0.0.1-predev.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.1"
},
"dependencies": {
"axios": "^0.18.0",
"draft-convert": "^2.1.2",
"draft-js": "0.11.4",
"draft-js-custom-styles": "^2.1.1",
"draft-js-export-html": "^1.2.0",
"draft-js-multidecorators": "^1.0.0",
"draft-js-prism": "^1.0.6",
"polished": "^3.4.0",
"prismjs": "^1.15.0",
"react": "^16.8.0",
"react-color": "^2.13.8",
"react-dev-utils": "^5.0.0",
"react-dom": "^16.2.0",
"react-popper": "^1.0.0",
"react-select": "^2.0.0"
},
"peerDependencies": {
"@emotion/cache": "^10.0.14",
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.14",
"emotion-theming": "^10.0.14",
"polished": "^3.4.0"
},
"scripts": {
"docz:dev": "docz dev",
"start": "yarn docz dev",
"predeploy": "PUBLIC_URL=https://michelson.github.io/dante2 yarn docz build",
"deploy": "node build.js",
"build": "NODE_ENV=production rollup -c",
"dev": "rollup -c -w",
"package": "NODE_ENV=production ./node_modules/.bin/babel-node tools/build-cli.js; yarn build",
"prepublish": "yarn package",
"publish-beta": "yarn publish --next"
}
}