-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.03 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.03 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
{
"private": true,
"type": "module",
"scripts": {
"api-docs:validate": "./node_modules/raml2html/bin/raml2html --validate www/api/docs.raml > /dev/null",
"api-docs:build": "./node_modules/raml2html/bin/raml2html --validate --theme raml2html-werk-theme --input www/api/docs.raml --output www/api/docs-tmp.html && cat www/api/docs-tmp.html | sed -e 's/<\\/head>/<link rel=\\\"stylesheet\\\" href=\\\"\\.\\/assets\\/docs_custom\\.css\\\"><\\/head>/' > www/api/docs.html && rm www/api/docs-tmp.html",
"dev": "vite -d --cors --host ::",
"build": "vite build",
"preview": "vite preview"
},
"devDependencies": {
"raml2html": "^7.8.0",
"raml2html-werk-theme": "^1.3.4"
},
"dependencies": {
"@intlify/unplugin-vue-i18n": "^6.0.3",
"@primevue/icons": "^4.0.7",
"@primevue/themes": "^4.0.7",
"@vitejs/plugin-vue": "^5",
"axios": "^1",
"glob": "^11",
"primeicons": "^7.0.0",
"primelocale": "^1.4.0",
"primevue": "^4",
"vite": "^5",
"vue": "^3",
"vue-i18n": "^11.0.1"
}
}