-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.79 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
{
"name": "kdp-ux",
"description": "The Web UI for KDP",
"version": "1.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore --quiet",
"test": "vitest",
"unit:coverage": "vitest run --coverage"
},
"engines": {
"node": ">= 18.x",
"npm": ">= 8.x"
},
"dependencies": {
"@lljj/vue3-form-element": "^1.19.0",
"@logicflow/core": "^1.2.22",
"@logicflow/extension": "^1.2.22",
"@vueuse/core": "^10.9.0",
"ansi_up": "^6.0.2",
"axios": "^1.6.7",
"echarts": "5.4.1",
"element-plus": "^2.6.0",
"file-saver": "^2.0.5",
"github-markdown-css": "^2.10.0",
"jsoneditor": "9.5.6",
"lodash": "^4.17.21",
"marked": "^12.0.0",
"moment": "^2.30.0",
"papaparse": "^5.3.2",
"pinia": "^2.1.7",
"remixicon": "^4.2.0",
"vue": "^3.4.19",
"vue-i18n": "^9.10.1",
"vue-json-pretty": "^2.2.4",
"vue-router": "^4.3.0",
"vue-smooth-dnd": "^0.2.8"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.7.2",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.5.0",
"@vue/eslint-config-prettier": "^9.0.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.22.0",
"eslint-plugin-vue-pug": "^0.6.2",
"prettier": "^3.2.5",
"pug": "^3.0.2",
"sass": "^1.71.1",
"tailwindcss": "^3.4.1",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.1.4",
"vitest": "^1.5.0",
"vue-eslint-parser": "^9.0.0"
},
"browserslist": {
"production": [
"> 1%",
"last 3 versions",
"not ie <= 11"
],
"development": [
"last 5 chrome version",
"last 5 safari version"
]
}
}