-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.71 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.71 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
{
"name": "mokapi",
"version": "0.10.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"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.2.6",
"@types/bootstrap": "^5.2.10",
"@types/whatwg-mimetype": "^3.0.2",
"ace-builds": "^1.43.4",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"dayjs": "^1.11.19",
"del-cli": "^7.0.0",
"fuse.js": "^7.1.0",
"http-status-codes": "^2.3.0",
"js-yaml": "^4.1.0",
"ncp": "^2.0.0",
"vue": "^3.5.23",
"vue-router": "^4.6.3",
"vue3-ace-editor": "^2.2.4",
"vue3-highlightjs": "^1.0.5",
"vue3-markdown-it": "^1.0.10",
"whatwg-mimetype": "^4.0.0",
"xml-formatter": "^3.6.7"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@rushstack/eslint-patch": "^1.14.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.10.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/tsconfig": "^0.8.1",
"eslint": "^9.39.1",
"eslint-plugin-vue": "^10.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"typescript": "~5.9.3",
"vite": "^7.2.2",
"vue-tsc": "^3.1.3",
"xml2js": "^0.6.2"
}
}