Skip to content
Snippets Groups Projects
This project manages its dependencies using npm. Learn more
package.json 1.18 KiB
{
  "name": "vpu-knowledge-base-web-page-element-view",
  "version": "1.0.0",
  "devDependencies": {
    "node-sass": "^4.12.0",
    "rollup": "^1.11.3",
    "rollup-plugin-commonjs": "^9.3.4",
    "rollup-plugin-copy": "^2.0.1",
    "rollup-plugin-node-resolve": "^4.2.3",
    "rollup-plugin-postcss": "^2.0.3",
    "rollup-plugin-serve": "^1.0.1",
    "rollup-plugin-terser": "^4.0.4",
    "rollup-plugin-json": "^4.0.0",
    "rollup-plugin-replace": "^2.2.0",
    "i18next-scanner": "^2.10.2",
    "vpu-auth": "file:./vendor/auth",
    "vpu-common": "file:./vendor/common"
  },
  "dependencies": {
    "@webcomponents/webcomponentsjs": "^2.2.10",
    "i18next": "^17.0.3",
    "lit-element": "^2.1.0",
    "lit-html": "^1.1.1"
  },
  "scripts": {
    "clean": "rm dist/*",
    "build": "npm run build-local",
    "build-local": "rollup -c",
    "build-dev": "rollup -c --environment BUILD:development",
    "build-prod": "rollup -c --environment BUILD:production",
    "build-demo": "rollup -c --environment BUILD:demo",
    "i18next": "i18next-scanner",
    "watch": "npm run watch-local",
    "watch-local": "rollup -c --watch",
    "watch-dev": "rollup -c --watch --environment BUILD:development"
  }
}