-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.66 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.66 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
{
"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.37.5",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"dayjs": "^1.11.13",
"del-cli": "^6.0.0",
"http-status-codes": "^2.3.0",
"js-yaml": "^4.1.0",
"ncp": "^2.0.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"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.4"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@rushstack/eslint-patch": "^1.10.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.10",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.7.0",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.32.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"typescript": "~5.7.3",
"vite": "^6.0.11",
"vue-tsc": "^2.2.0"
}
}