-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpackage.json
114 lines (114 loc) · 3.91 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
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
{
"name": "everright-formeditor",
"version": "1.3.0",
"description": "🦮 Powerful lowcode|vue form editor,generator,designer,builder library. It provides an easy way to create custom forms. The project is extensible, easy to use and configure, and provides many commonly used form components and functions(vue可视化低代码表单设计器、表单编辑器、element-plus vant表单设计)",
"files": [
"dist",
"packages/formEditor/componentsConfig.js"
],
"packageManager": "[email protected]",
"license": "MIT",
"keywords": ["vue","drag-and-drop","validator","form","form-builder","designer","wysiwyg-editor","json-form","form-generator","low-code","no-code","form-designer","schema-form","vant","vue-form","form-editor","vue3","element-plus","lowcode-editor","everright"],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Liberty-liu/Everright-formEditor.git"
},
"main": "./dist/Everright-formEditor.umd.cjs",
"module": "./dist/Everright-formEditor.js",
"style": "./dist/style.css",
"exports": {
".": {
"import": "./dist/Everright-formEditor.js",
"require": "./dist/Everright-formEditor.umd.cjs"
},
"./dist/style.css": "./dist/style.css",
"./packages/formEditor/componentsConfig.js": "./packages/formEditor/componentsConfig.js"
},
"scripts": {
"dev:server": "nodemon server --watch server",
"dev:ckeditor5": "pnpm -C external/ckeditor5 dev",
"build:ckeditor5": "pnpm -C external/ckeditor5 build",
"dev": "vite --host 0.0.0.0",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .js,.jsx,.vue",
"lint-fix": "eslint --fix . --ext .js,.jsx,.vue",
"prepare": "husky install",
"init": "node ./server/db/generateDatabase.js && mkdir uploads",
"test": "vitest",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"@vant/area-data": "^1.4.0",
"@vant/touch-emulator": "^1.4.0",
"@vue/shared": "^3.2.45",
"@vuelidate/core": "^2.0.0",
"@vuelidate/validators": "^2.0.0",
"async": "^3.2.4",
"axios": "^1.2.2",
"canvas": "^2.11.2",
"dayjs": "^1.11.7",
"element-plus": "^2.2.28",
"everright-filter": "^1.1.1",
"jss": "^10.9.2",
"jss-preset-default": "^10.9.2",
"lodash-es": "^4.17.21",
"nanoid": "^4.0.0",
"nzh": "^1.0.8",
"signature_pad": "^4.1.4",
"vant": "^4.0.8",
"vite-svg-loader": "^4.0.0",
"vue": "^3.2.45",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@ckeditor/ckeditor5-alignment": "^35.4.0",
"@ckeditor/ckeditor5-build-classic": "^35.4.0",
"@ckeditor/ckeditor5-build-decoupled-document": "^35.4.0",
"@ckeditor/ckeditor5-build-inline": "^35.4.0",
"@ckeditor/ckeditor5-vue": "^4.0.1",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"@vue/compiler-sfc": "^3.2.47",
"@vue/test-utils": "^2.3.2",
"better-sqlite3": "^8.2.0",
"connect-multiparty": "^2.2.0",
"conventional-changelog-cli": "^4.1.0",
"cz-git": "^1.5.3",
"eslint": "^8.32.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.9.0",
"express": "^4.18.2",
"husky": "^8.0.3",
"jsdom": "^22.0.0",
"lint-staged": "^13.1.2",
"nodemon": "^2.0.21",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.58.3",
"vite": "^3.2.7",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.31.0",
"vue-router": "^4.1.6"
},
"peerDependencies": {
"element-plus": "^2.2.28",
"vant": "^4.0.8",
"vue": "^3.2.45"
},
"lint-staged": {
"*.{vue,js,jsx}": "eslint"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}