-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.05 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.05 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
{
"name": "mokapi",
"version": "0.10.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"build-dashboard": "vite build --mode dashboard",
"build-website": "vite build --mode website",
"preview": "vite preview",
"test:e2e": "playwright test",
"build-only": "vite build",
"type-check": "vue-tsc",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"copy-docs": "ncp ../docs ./src/assets/docs",
"clean": "del-cli ./src/assets/docs",
"build-sitemap": "node build-sitemap.js"
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"@ssthouse/vue3-tree-chart": "^0.3.0",
"@types/bootstrap": "^5.2.10",
"@types/mokapi": "^0.35.0",
"@types/nodemailer": "^8.0.0",
"@types/whatwg-mimetype": "^5.0.0",
"ace-builds": "^1.43.5",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"cors": "^2.8.6",
"dayjs": "^1.11.20",
"del-cli": "^7.0.0",
"express": "^5.2.1",
"fuse.js": "^7.3.0",
"highlight.js": "^11.11.1",
"http-status-codes": "^2.3.0",
"js-yaml": "^4.1.1",
"kafkajs": "^2.2.4",
"ldapts": "^8.1.7",
"markdown-it": "^14.1.1",
"markdown-it-container": "^4.0.0",
"mime-types": "^3.0.2",
"ncp": "^2.0.0",
"nodemailer": "^8.0.5",
"vue": "^3.5.33",
"vue-router": "^5.0.6",
"vue3-ace-editor": "^2.2.4",
"whatwg-mimetype": "^5.0.0",
"xml-formatter": "^3.7.0"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@rushstack/eslint-patch": "^1.16.1",
"@types/js-yaml": "^4.0.9",
"@types/markdown-it-container": "^4.0.0",
"@types/node": "^25.6.0",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/tsconfig": "^0.9.1",
"eslint": "^10.2.1",
"eslint-plugin-vue": "^10.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.3",
"typescript": "~6.0.3",
"vite": "^8.0.10",
"vue-tsc": "^3.2.7",
"xml2js": "^0.6.2"
}
}