-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "coliquio-image",
"version": "1.0.0",
"description": "A simple image block that persists all image attributes",
"main": "build/index.js",
"gutenbergCloud": {
"js": "build/index.js",
"css": "build/style.css",
"screenshot": "screenshot.png",
"name": "Coliquio Image"
},
"scripts": {
"build": "NODE_ENV=production webpack",
"start": "npm run build && BLOCK_DIR=$PWD npm --prefix node_modules/@frontkom/g-editor start",
"deploy": "npm run build && npm publish --access public"
},
"keywords": [
"gutenberg",
"gutenberg-cloud"
],
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@frontkom/g-editor": "^1.4.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.18.3",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"files": [
"build/",
"screenshot.png"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}