-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
129 lines (129 loc) · 3.34 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "ujcms-cp",
"version": "9.7.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src/**/*.{vue,ts,tsx} --fix",
"prettier": "prettier --write src/**/*.{json,js,ts,tsx,css,scss,vue,html,md}",
"lint-staged": "lint-staged",
"prepare": "husky",
"plop": "plop"
},
"dependencies": {
"@codemirror/lang-html": "^6.4.8",
"@element-plus/icons-vue": "^2.3.1",
"@toast-ui/chart": "^4.6.1",
"@toast-ui/editor": "^3.2.2",
"@toast-ui/editor-plugin-chart": "^3.0.1",
"@toast-ui/editor-plugin-code-syntax-highlight": "^3.1.0",
"@toast-ui/editor-plugin-table-merged-cell": "^3.1.0",
"@toast-ui/editor-plugin-uml": "^3.0.1",
"@vueuse/components": "^10.9.0",
"@vueuse/core": "^10.9.0",
"axios": "^1.6.8",
"bpmn-js": "^17.2.1",
"codemirror": "^6.0.1",
"core-js": "^3.36.1",
"cropperjs": "^1.6.1",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.10",
"diagram-js": "^14.11.3",
"diagram-js-direct-editing": "^2.1.2",
"domutils": "^3.1.0",
"echarts": "^5.5.0",
"element-plus": "~2.8.8",
"entities": "^4.5.0",
"file-saver": "^2.0.5",
"htmlparser2": "^9.1.0",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"min-dash": "^4.2.2",
"nprogress": "^0.2.0",
"path-to-regexp": "^6.2.1",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"prismjs": "^1.29.0",
"sm-crypto": "^0.3.13",
"sortablejs": "1.14.0",
"tinymce": "~5.9.2",
"vue": "^3.4.21",
"vue-codemirror": "^6.1.1",
"vue-i18n": "^9.10.2",
"vue-router": "^4.3.0",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^4.0.0",
"@types/crypto-js": "^4.2.2",
"@types/file-saver": "^2.0.7",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.2",
"@types/nprogress": "^0.2.3",
"@types/prismjs": "^1.26.3",
"@types/sm-crypto": "^0.3.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-legacy": "^5.3.2",
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.24.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mockjs": "^1.1.0",
"plop": "^4.0.1",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"prettier": "^3.2.5",
"sass": "^1.72.0",
"tailwindcss": "^3.4.3",
"terser": "^5.30.1",
"typescript": "^5.4.3",
"vite": "^5.2.7",
"vite-plugin-mock": "^3.0.1",
"vue-tsc": "^2.0.7"
},
"prettier": {
"printWidth": 180,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.vue": [
"eslint --fix",
"prettier --write"
],
"{!(package)*.json,.!(browserslist)*rc}": [
"prettier --write--parser json"
],
"package.json": [
"prettier --write"
],
"*.{scss,html}": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"engines": {
"node": ">=18"
}
}