{
  "name": "@veracity/ui-react",
  "version": "0.2.66396",
  "description": "React UI components for Veracity and related applications.",
  "main": "lib/index.js",
  "scripts": {
    "clean:demo-dist": "node ./scripts/clean-demo-dist.js",
    "clean:dist": "node ./scripts/clean-dist.js",
    "copy:webconfig": "node ./scripts/copy-webconfig.js",
    "compile:tsc": "tsc -p ./src/tsconfig.json",
    "compile:demo": "cross-env TS_NODE_PROJECT=./demo/webpack/tsconfig.json webpack --config ./demo/webpack/webpack-config-prod.ts --progress --colors",
    "compile:colors": "ts-node -P ./scripts/tsconfig.json ./scripts/compile-colors.ts",
    "copy:styles": "node ./scripts/copy-scss.js",
    "make:libdist": "node ./scripts/make-lib-dist.js",
    "make:badge": "node ./scripts/make-badge.js",
    "build": "yarn clean:dist && yarn compile:colors && yarn compile:tsc && yarn copy:styles && yarn make:libdist",
    "build:demo": "yarn clean:demo-dist && yarn compile:colors && yarn compile:demo && yarn copy:webconfig",
    "start": "cross-env TS_NODE_PROJECT=./demo/webpack/tsconfig.json webpack-dev-server --config ./demo/webpack/webpack-config-dev.ts --progress --colors --hot",
    "lint": "tslint -r ./node_modules/tslint-microsoft-contrib -p ./src/tsconfig.json",
    "audit": "npm audit",
    "test": "jest",
    "test:watch": "jest --watch",
    "coverage": "jest --coverage",
    "coverage:watch": "jest --coverage --watch"
  },
  "repository": {
    "type": "git",
    "url": "https://dnvgl-one.visualstudio.com/DefaultCollection/Veracity/_git/WEB-UI"
  },
  "keywords": [
    "React",
    "UI",
    "Components",
    "Veracity",
    "Developer",
    "Web"
  ],
  "author": "Veracity",
  "license": "MIT",
  "devDependencies": {
    "@types/enzyme": "^3.1.11",
    "@types/enzyme-adapter-react-16": "^1.0.2",
    "@types/fs-extra": "^5.0.3",
    "@types/html-webpack-plugin": "^2.30.3",
    "@types/jest": "^23.1.1",
    "@types/lodash": "^4.14.109",
    "@types/mini-css-extract-plugin": "^0.2.0",
    "@types/node": "^10.3.3",
    "@types/react": "^16.4.9",
    "@types/react-dom": "^16.0.7",
    "@types/react-modal": "^3.1.2",
    "@types/react-router-dom": "^4.2.7",
    "@types/react-select": "^2.0.2",
    "@types/react-syntax-highlighter": "0.0.5",
    "@types/react-test-renderer": "^16.0.1",
    "@types/react-toastify": "^4.0.1",
    "@types/webpack": "^4.4.0",
    "autoprefixer": "^8.6.2",
    "cheerio": "^1.0.0-rc.2",
    "core-js": "^2.5.7",
    "cross-env": "^5.2.0",
    "css-loader": "^0.28.11",
    "enzyme": "^3.3.0",
    "enzyme-adapter-react-16": "^1.1.1",
    "file-loader": "^1.1.11",
    "fs-extra": "^6.0.0",
    "html-loader": "^0.5.5",
    "html-to-react": "^1.3.3",
    "html-webpack-plugin": "^3.2.0",
    "jest": "^23.1.0",
    "jest-environment-jsdom": "^23.2.0",
    "jest-environment-jsdom-global": "^1.1.0",
    "jest-enzyme": "^6.0.2",
    "markdown-loader": "^3.0.0",
    "mini-css-extract-plugin": "^0.4.0",
    "node-sass": "^4.9.0",
    "postcss-loader": "^2.1.5",
    "raw-loader": "^0.5.1",
    "react": "^16.4.1",
    "react-dom": "^16.4.1",
    "react-hot-loader": "^4.3.2",
    "react-router": "^4.3.1",
    "react-router-dom": "^4.3.1",
    "react-router-redux": "^4.0.8",
    "react-syntax-highlighter": "^7.0.4",
    "react-test-renderer": "^16.4.1",
    "sass-loader": "^7.0.3",
    "style-loader": "^0.21.0",
    "ts-jest": "^22.4.6",
    "ts-loader": "^4.4.1",
    "ts-node": "^6.1.1",
    "tsconfig-paths": "^3.4.0",
    "tslint": "^5.10.0",
    "tslint-microsoft-contrib": "^5.0.3",
    "tslint-react": "^3.6.0",
    "typescript": "^3.0.1",
    "webpack": "^4.12.0",
    "webpack-cli": "^3.0.6",
    "webpack-dev-server": "^3.1.4"
  },
  "dependencies": {
    "@types/fontfaceobserver": "0.0.6",
    "axios": "^0.18.0",
    "fontfaceobserver": "^2.0.13",
    "lodash": "^4.17.10",
    "react-modal": "^3.4.5",
    "react-select": "^2.0.0",
    "react-toastify": "^4.1.0"
  },
  "peerDependencies": {
    "react": "^16.0.0",
    "react-dom": "^16.0.0"
  },
  "resolutions": {
    "@types/react": "16.4.9"
  },
  "jest": {
    "rootDir": "./src",
    "setupTestFrameworkScriptFile": "<rootDir>/../scripts/setupEnzyme.js",
    "testEnvironment": "jest-environment-jsdom-global",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "transform": {
      "^.+\\.(ts|tsx)$": "ts-jest"
    },
    "moduleNameMapper": {
      "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
      "\\.(css|less|scss)$": "<rootDir>/__mocks__/styleMock.js"
    },
    "globals": {
      "ts-jest": {
        "tsConfigFile": "tsconfig.json"
      }
    },
    "testMatch": [
      "**/?(*.)+(spec|test).(ts|tsx|js)"
    ]
  }
}
