{
  "name": "drawing-app",
  "version": "0.1.0",
  "description": "CRDT-based p2p Drawing Application",
  "main": "index.js",
  "type": "module",
  "engines": {
    "node": ">=12.0.0"
  },
  "scripts": {
    "build": "webpack src/app.js -o public/js/app.js",
    "peer": "node --experimental-modules server.js",
    "start": "http-server -c-1 -p 12345 public",
    "test": "jest",
    "test-changed": "jest --only-changed",
    "test-coverage": "jest --coverage"
  },
  "dependencies": {
    "d3": "^5.12.0",
    "http-server": "^0.11.1",
    "peer": "git+https://github.com/peers/peerjs-server.git",
    "peerjs": "^1.1.0",
    "uuid": "^3.3.3",
    "y-array": "^10.1.4",
    "y-map": "^10.1.3",
    "y-memory": "^8.0.9",
    "yjs": "^12.3.3"
  },
  "devDependencies": {
    "jest": "^24.9.0",
    "webpack": "^4.41.0",
    "webpack-cli": "^3.3.9"
  }
}