{ "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-shape": "^1.3.5", "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": { "eslint": "^6.5.1", "jest": "^24.9.0", "prettier": "^1.18.2", "webpack": "^4.41.0", "webpack-cli": "^3.3.9" } }