You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ui/package.json

52 lines
1.6 KiB

2 years ago
{
"name": "mathy",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "pnpm run lint && vue-tsc --noEmit && vite build",
"prepare": "pnpm run build",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"preview": "vite preview",
"cd:build": "pnpm run build && docker image build . -t ${DOCKER_REGISTRY}/glmdev/mathy",
"cd:push": "docker push ${DOCKER_REGISTRY}/glmdev/mathy",
"cd:deploy": "kubectl apply -f deploy/1-certificate.yaml -f deploy/2-deploy.yaml",
"cd:rollout": "kubectl rollout -n mathy restart deployment/mathy",
"cd": "pnpm run cd:build && pnpm run cd:push && pnpm run cd:rollout"
2 years ago
},
"dependencies": {
"@auth0/auth0-vue": "^1.0.0",
"@quasar/extras": "^1.13.5",
"@types/katex": "^0.14.0",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.2",
"@vuetify/vite-plugin": "1.0.0-alpha.10",
"chart.js": "^3.7.1",
"dependency-graph": "^0.11.0",
"install": "^0.13.0",
"katex": "^0.15.3",
"mathjs": "^10.4.3",
"quasar": "^2.6.6",
"uuid": "^8.3.2",
"validator": "^13.7.0",
"vue": "^3.2.25",
"vue-chart-3": "^3.1.8",
"vue-router": "^4.0.14",
"vuetify": "3.0.0-beta.0"
2 years ago
},
"devDependencies": {
"@braks/revue-draggable": "^0.4.2",
"@quasar/vite-plugin": "^1.0.9",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
2 years ago
"@vitejs/plugin-vue": "^2.3.1",
2 years ago
"@volar/vue-language-service": "^0.33.9",
"eslint": "^8.13.0",
"sass": "1.32.0",
2 years ago
"typescript": "^4.5.4",
"vite": "^2.9.0",
"vue-tsc": "^0.33.9"
}
}