Skip to content
Snippets Groups Projects
This project manages its dependencies using npm. Learn more
package.json 1.28 KiB
{
  "name": "vpu-person-select-wc",
  "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"
  },
  "dependencies": {
    "@webcomponents/webcomponentsjs": "^2.2.10",
    "i18next": "^17.0.3",
    "jquery": "^3.4.1",
    "lit-element": "^2.1.0",
    "select2": "^4.0.7",
    "vpu-auth-wc": "*",
    "vpu-common": "*"
  },
  "scripts": {
    "setup": "mkdir -p node_modules && cd node_modules && ln -sfn ../vendor/common vpu-common && ln -sfn ../vendor/auth vpu-auth",
    "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"
  }
}