-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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
{
"name": "blocks-editor",
"version": "1.0.0",
"description": "BlocksEditor - Blocks editor based on editor.js",
"main": "src/index.ts",
"dependencies": {
"@editorjs/editorjs": "^2.19.1",
"@editorjs/header": "^2.6.1",
"@editorjs/nested-list": "^1.0.1",
"@editorjs/paragraph": "^2.8.0",
"@editorjs/underline": "^1.0.0",
"axios": "^0.21.1",
"editorjs-alert": "^1.0.3",
"lodash": "^4.17.20"
},
"devDependencies": {
"@editorjs/checklist": "^1.3.0",
"@editorjs/code": "^2.6.0",
"@editorjs/delimiter": "^1.2.0",
"@editorjs/embed": "^2.4.0",
"@editorjs/inline-code": "^1.3.1",
"@editorjs/link": "^2.3.1",
"@editorjs/marker": "^1.2.2",
"@editorjs/personality": "^2.0.2",
"@editorjs/quote": "^2.4.0",
"@editorjs/table": "^1.3.0",
"@editorjs/warning": "^1.2.0",
"@types/lodash": "^4.14.168",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"html-webpack-plugin": "^4.5.1",
"postcss": "^8.2.8",
"postcss-loader": "^5.2.0",
"postcss-nested": "^5.0.5",
"postcss-nested-ancestors": "^2.0.0",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.15",
"typescript": "^4.1.3",
"webpack": "^5.20.2",
"webpack-cli": "^4.5.0",
"webpack-merge": "^5.7.3"
},
"scripts": {
"start": "webpack serve --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"keywords": [
"codex editor",
"text editor",
"editor",
"editor.js",
"editorjs",
"json",
"blocks"
],
"author": "Jerin Lee",
"repository": {
"type": "git",
"url": "https://github.com/tunaltd/blocks-editor.git"
},
"license": "Apache License 2.0"
}