{
  "name": "drawing-app",
  "version": "0.1.0",
  "description": "CRDT-based p2p Drawing Application",
  "repository": "https://gitlab.doc.ic.ac.uk/sweng-group-15/drawing-app",
  "license": "MIT",
  "main": "index.js",
  "type": "module",
  "engines": {
    "node": ">=12.0.0"
  },
  "scripts": {
    "build": "webpack --config webpack.prod.js",
    "build:analyze": "webpack --env.analyze --config webpack.prod.js",
    "build:dev": "webpack --config webpack.dev.js",
    "watch": "webpack --watch --config webpack.dev.js",
    "start": "node --experimental-modules src/server.js",
    "test": "jest --testPathIgnorePatterns .*.data.js .*benchmark.test.js src/liowebrtc src/rtcpeerconnection src/signalbuddy src/yjs src/tiny-worker",
    "test-changed": "jest --only-changed --testPathIgnorePatterns __tests__/*.data.js src/liowebrtc src/rtcpeerconnection src/signalbuddy src/yjs src/tiny-worker",
    "test-coverage": "jest --coverage --testPathIgnorePatterns __tests__/*.data.js src/liowebrtc src/rtcpeerconnection src/signalbuddy src/yjs src/tiny-worker",
    "test-benchmark": "jest --testPathPattern .*benchmark.test.js --testPathIgnorePatterns .*.data.js src/liowebrtc src/rtcpeerconnection src/signalbuddy src/yjs src/tiny-worker",
    "test-e2e:peer1": "testcafe chrome:headless __e2e_tests__/peer1.e2e.js",
    "test-e2e:peer2": "testcafe chrome:headless __e2e_tests__/peer2.e2e.js",
    "test-e2e": "run-p test-e2e:*",
    "test-e2e-start": "run-s start-bg test-e2e",
    "start-bg": "npm run start > /dev/null 2>&1 &",
    "format": "prettier --ignore-path .gitignore --check --write '**/*.{html,js,json,md}'",
    "format-check": "prettier --ignore-path .gitignore --check '**/*.{html,js,json,md}'",
    "lint": "eslint --ignore-path .gitignore '**/*.js'",
    "validate": "npm ls"
  },
  "dependencies": {
    "@ungap/event-target": "^0.1.0",
    "d3-shape": "^1.3.5",
    "dotenv": "^8.2.0",
    "express": "^4.17.1",
    "humanhash": "^1.0.4",
    "jdenticon": "^2.2.0",
    "liowebrtc": "file:src/liowebrtc",
    "pako": "^1.0.10",
    "rtcpeerconnection": "file:src/rtcpeerconnection",
    "signalbuddy": "file:src/signalbuddy",
    "uuid": "^3.3.3",
    "webrtc-adapter": "^7.3.0",
    "what-the-pack": "^2.0.3",
    "y-array": "^10.1.4",
    "y-map": "^10.1.3",
    "y-memory": "^8.0.9",
    "yjs": "file:src/yjs"
  },
  "devDependencies": {
    "@babel/plugin-transform-modules-commonjs": "^7.6.0",
    "chalk": "^3.0.0",
    "eslint": "^6.5.1",
    "eslint-config-prettier": "^6.5.0",
    "eslint-plugin-testcafe": "^0.2.1",
    "jest": "^24.9.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^1.18.2",
    "testcafe": "^1.5.0",
    "tiny-worker": "file:src/tiny-worker",
    "webpack": "^4.41.0",
    "webpack-bundle-analyzer": "^3.6.0",
    "webpack-cli": "^3.3.9",
    "webpack-merge": "^4.2.2",
    "webpack-preprocessor-loader": "^1.1.2"
  },
  "pre-commit": [
    "lint",
    "validate",
    "test"
  ]
}