forked from front/gutenberg-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.12 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
{
"name": "@frontkom/gutenberg-js",
"version": "3.0.1",
"description": "gutenberg-js - An extension of the Wordpress Gutenberg editor",
"main": "build/js/gutenberg-js.js",
"repository": {
"type": "git",
"url": "git+https://github.com/front/gutenberg-js.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production webpack",
"dev": "NODE_ENV=development webpack",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"deploy": "npm run lint && npm publish --access public"
},
"homepage": "https://github.com/front/gutenberg-js#readme",
"bugs": {
"url": "https://github.com/front/gutenberg-js/issues"
},
"author": "The Frontkom Contributors",
"license": "GPL-2.0-or-later",
"keywords": [
"CMS",
"Drupal",
"Editor",
"Frontkom",
"Gutenberg",
"Page builder",
"WordPress",
"WYSIWYG"
],
"dependencies": {
"@wordpress/a11y": "^2.0.2",
"@wordpress/api-fetch": "2.2.4",
"@wordpress/autop": "^2.0.2",
"@wordpress/blob": "^2.1.0",
"@wordpress/block-library": "^2.2.4",
"@wordpress/block-serialization-default-parser": "^2.0.0",
"@wordpress/blocks": "^6.0.0",
"@wordpress/components": "^6.0.2",
"@wordpress/compose": "^3.0.0",
"@wordpress/core-data": "^2.0.13",
"@wordpress/data": "^4.0.0",
"@wordpress/date": "^3.0.0",
"@wordpress/deprecated": "^2.0.3",
"@wordpress/dom": "^2.0.6",
"@wordpress/dom-ready": "^2.0.2",
"@wordpress/edit-post": "3.0.2",
"@wordpress/editor": "8.0.0",
"@wordpress/element": "^2.1.8",
"@wordpress/escape-html": "^1.0.1",
"@wordpress/format-library": "^1.2.2",
"@wordpress/hooks": "^2.0.3",
"@wordpress/html-entities": "^2.0.2",
"@wordpress/i18n": "^3.1.0",
"@wordpress/is-shallow-equal": "^1.1.4",
"@wordpress/keycodes": "^2.0.3",
"@wordpress/notices": "1.0.5",
"@wordpress/nux": "^3.0.0",
"@wordpress/plugins": "^2.0.9",
"@wordpress/redux-routine": "^3.0.3",
"@wordpress/rich-text": "^3.0.0",
"@wordpress/shortcode": "^2.0.2",
"@wordpress/token-list": "^1.0.2",
"@wordpress/url": "2.3.0",
"@wordpress/viewport": "^2.0.11",
"@wordpress/wordcount": "^2.0.3",
"tinymce": "4.8.0"
},
"devDependencies": {
"@babel/core": "7.0.0",
"@wordpress/babel-plugin-makepot": "^2.1.2",
"@wordpress/scripts": "^2.4.3",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.5",
"babel-preset-react-app": "^3.1.1",
"babel-runtime": "^6.26.0",
"clean-webpack-plugin": "^0.1.19",
"eslint": "^5.9.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-react": "^7.10.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"node-sass": "git://github.com/sass/node-sass.git#v4.7.0",
"path-replace-loader": "^2.0.0",
"postcss-color-function": "^4.0.1",
"postcss-loader": "^2.1.6",
"postcss-wrapper-loader": "^0.0.2",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.7",
"string-replace-webpack-plugin": "^0.1.3",
"webpack": "4.8.3",
"webpack-cli": "2.1.3"
},
"private": false
}