-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.21 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
{
"name": "notion-editor",
"version": "0.0.1",
"description": "a implement of notion editor based on prosemirror for test",
"main": "index.js",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"dev": "rm -rf build && webpack-dev-server",
"build": "rm -rf build && webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xheldon/NotionEditor.git"
},
"keywords": [
"notion",
"editor",
"xheldon"
],
"author": "Xheldon",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/Xheldon/NotionEditor/issues"
},
"homepage": "https://github.com/Xheldon/NotionEditor#readme",
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/prosemirror-commands": "^1.0.4",
"@types/prosemirror-history": "^1.0.2",
"@types/prosemirror-inputrules": "^1.0.4",
"@types/prosemirror-keymap": "^1.0.4",
"@types/prosemirror-model": "^1.11.3",
"@types/prosemirror-state": "^1.2.6",
"@types/prosemirror-transform": "^1.1.2",
"@types/prosemirror-view": "^1.17.1",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"css-loader": "^3.2.1",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"lodash": "^4.17.15",
"prosemirror-commands": "^1.1.7",
"prosemirror-history": "^1.1.3",
"prosemirror-inputrules": "^1.1.3",
"prosemirror-keymap": "^1.1.4",
"prosemirror-model": "^1.13.3",
"prosemirror-state": "^1.3.4",
"prosemirror-transform": "^1.2.12",
"prosemirror-view": "^1.17.8",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"redux": "^4.0.4"
}
}