-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
69 lines (69 loc) · 2.14 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": "asblocks",
"version": "1.2.0",
"private": true,
"description": "Write content as blocks.",
"author": "Riad Benguella",
"license": "GPL-3.0-or-later",
"keywords": [
"Gutenberg",
"editor"
],
"homepage": "https://asblocks.com",
"repository": "git+https://github.com/youknowriad/asblocks.git",
"bugs": {
"url": "https://github.com/youknowriad/asblocks/issues"
},
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html && generate-version -s package -b dist",
"test": "wp-scripts test-unit-js",
"lint:style": "wp-scripts lint-style src",
"lint:js": "wp-scripts lint-js src desktop",
"lint": "run-p lint:*",
"start:desktop:renderer": "parcel watch src/index.html --public-url \"./\" --dist-dir desktop/dist",
"build:desktop:renderer": "parcel build src/index.html --public-url \"./\" --dist-dir desktop/dist"
},
"dependencies": {
"@sentry/browser": "^5.29.0",
"@wordpress/block-editor": "^6.1.9",
"@wordpress/block-library": "^3.2.13",
"@wordpress/blocks": "^9.1.5",
"@wordpress/components": "^14.1.6",
"@wordpress/compose": "^4.1.3",
"@wordpress/data": "^5.1.3",
"@wordpress/data-controls": "^2.1.3",
"@wordpress/element": "^3.1.1",
"@wordpress/format-library": "^2.1.9",
"@wordpress/hooks": "^3.1.1",
"@wordpress/icons": "^4.0.2",
"@wordpress/is-shallow-equal": "^4.1.1",
"@wordpress/keycodes": "^3.1.1",
"@wordpress/notices": "^3.1.3",
"@wordpress/rich-text": "^4.1.3",
"classnames": "^2.3.1",
"easy-web-crypto": "1.1.1",
"insights-js": "^1.2.10",
"is-electron": "^2.2.0",
"lodash": "^4.17.21",
"memize": "^1.1.0",
"react-promise-suspense": "^0.3.3",
"react-router-dom": "^5.2.0",
"react-update-notification": "^1.0.0",
"rememo": "^3.0.0",
"socket.io-client": "^2.3.1",
"tiny-emitter": "^2.1.0",
"use-local-storage-state": "^6.0.0",
"uuid": "^8.3.2",
"yjs": "^13.4.7"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.14.5",
"@wordpress/babel-preset-default": "^6.2.0",
"@wordpress/scripts": "^16.1.4",
"npm-run-all": "^4.1.5",
"parcel": "^2.0.0-beta.3.1",
"prettier": "npm:[email protected]"
}
}