-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.97 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.97 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "frontboard",
"type": "module",
"description": "Frontend toolbox",
"version": "0.1.0",
"author": "Aitana Gallego Martín",
"homepage": "https://github.com/aitanadev/frontboard",
"main": "src/import.js",
"browser": "src/index.js",
"keywords": [
"frontend",
"webcomponents",
"wysiwyg",
"text editor",
"prosemirror",
"live components",
"design system"
],
"imports": {
"#models": "./src/models",
"#models/*": "./src/models/*.js",
"#services": "./src/services",
"#services*": "./src/services*.js",
"#lib/*": "./src/lib/*.js",
"#config/*": "./src/config/*.js",
"#views/*": "./src/views/*.vue",
"#views/*.example": "./src/views/*.example",
"#data/*": "./data/*",
"#components": "./src/components",
"#components/*": "./src/components/*.vue"
},
"license": "MIT",
"scripts": {
"start": "build",
"lint": "eslint --cache --quiet --no-error-on-unmatched-pattern ./",
"lint:fix": "eslint --fix --cache --quiet --no-error-on-unmatched-pattern ./",
"test": "jest",
"test:run": "jest",
"test:build": "yarn run build && yarn run test:run",
"build": "webpack --mode=production --node-env=production",
"build:frontboard": "yarn --prefix ./packages/pm run build",
"build:modelboard": "yarn --prefix ./demos run build:demos",
"publish": "yarn run build:prod && yarn run test && npm login && npm publish --tag latest --access public",
"publish:pre": "yarn run build:prod && yarn run test && npm login && npm publish --tag next --access public",
"clean": "rm -rf ./node_modules && rm -rf ./**/node_modules",
"reset": "yarn run clean && rm -rf ./yarn.lock && yarn install",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve",
"api": "node --watch service.js"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@webpack-cli/generators": "^3.0.7",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.10.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.7.7",
"prettier": "^3.2.4",
"sass": "^1.70.0",
"sass-loader": "^14.1.0",
"style-loader": "^3.3.4",
"vue-loader": "^15.10.1",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@babel/eslint-parser": "^7.23.10",
"@flaticon/flaticon-uicons": "^3.1.0",
"@tiptap/core": "^2.1.12",
"@tiptap/extension-code-block": "^2.1.12",
"@tiptap/extension-code-block-lowlight": "^2.1.12",
"@tiptap/extension-dropcursor": "^2.1.12",
"@tiptap/extension-floating-menu": "^2.1.12",
"@tiptap/extension-highlight": "^2.1.12",
"@tiptap/extension-image": "^2.1.12",
"@tiptap/extension-italic": "^2.1.12",
"@tiptap/extension-link": "^2.1.12",
"@tiptap/extension-task-item": "^2.1.12",
"@tiptap/extension-task-list": "^2.1.12",
"@tiptap/extension-typography": "^2.1.12",
"@tiptap/extension-underline": "^2.1.12",
"@tiptap/pm": "^2.1.12",
"@tiptap/starter-kit": "^2.1.12",
"@tiptap/vue-2": "^2.1.12",
"@vue/test-utils": "^1.3.6",
"@vue/vue2-jest": "^29.2.6",
"axios": "^0.27.0",
"dompurify": "^3.0.6",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.21.1",
"eslint-webpack-plugin": "^4.0.1",
"formidable": "^3.5.1",
"highlight.js": "^11.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lowlight": "^2.9.0",
"marked": "^11.2.0",
"material-symbols": "^0.13.2",
"sqlite3": "^5.1.7",
"turndown": "^7.1.2",
"vue": "^2.7.14",
"vue-template-compiler": "^2.7.16",
"vuedraggable": "^2.24.3"
},
"resolutions": {
"strip-ansi": "6.0.1"
}
}