Skip to content
Snippets Groups Projects
package.json 2.96 KiB
Newer Older
  "name": "aura-dashboard",
  "version": "1.0.0-alpha2",
    "serve": "vite",
    "dev": "vite",
    "build": "vue-tsc --noEmit && vite build",
    "preview-build": "make dist && vite preview",
    "preview": "vite preview",
    "lint": "npm run lint-eslint && npm run lint-prettier && npm run lint-types",
    "lint-eslint": "eslint --color --ext .js,.mjs,.ts,.vue --ignore-path .gitignore --ignore-path .eslintignore src/ scripts/",
    "lint-prettier": "prettier . --check --ignore-path .gitignore --ignore-path .prettierignore",
    "lint-types": "vue-tsc --noEmit",
    "format": "npm run lint-prettier -- --write && npm run lint-eslint -- --fix",
David Trattnig's avatar
David Trattnig committed
    "spell": "npx cspell -c cspell.json **/*.{txt,js,ts,md}",
    "prepare": "husky install"
    "*": "prettier --check --ignore-path .gitignore --ignore-path .prettierignore",
    "*.{js,ts,vue}": "eslint --color --ignore-path .gitignore --ignore-path .eslintignore"
  },
  "homepage": "https://gitlab.servus.at/aura/dashboard",
  "license": "AGPL-3.0-only"