{ "name": "@hiveteams/collab", "private": true, "description": "Slate collaborative editing", "scripts": { "format": "prettier --write", "test": "jest" }, "author": "cudr", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/cudr/slate-collaborative.git" }, "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "lint-staged": { "*.{js,jsx,ts,tsx,babelrc}": [ "npm run format", "git add" ] }, "devDependencies": { "@babel/cli": "^7.6.0", "@babel/core": "^7.6.0", "@babel/plugin-proposal-class-properties": "^7.5.5", "@babel/plugin-proposal-object-rest-spread": "^7.5.5", "@babel/plugin-proposal-optional-chaining": "^7.9.0", "@babel/preset-env": "^7.6.0", "@babel/preset-typescript": "^7.6.0", "@commitlint/cli": "^9.0.1", "@commitlint/config-conventional": "^9.0.1", "@types/jest": "^24.9.0", "@types/lodash": "^4.14.178", "@types/socket.io": "^2.1.4", "auto-changelog": "^2.1.0", "husky": "^3.0.5", "jest": "^24.9.0", "lint-staged": "^9.2.5", "prettier": "^1.18.2", "ts-jest": "^25.4.0", "typescript": "^4.5.5" }, "dependencies": { "automerge": "0.14.0", "lodash": "4.17.21", "slate": "0.72.8", "slate-history": "0.66.0", "socket.io": "^2.3.0" }, "jest": { "preset": "ts-jest", "globals": { "ts-jest": { "babelConfig": ".babelrc" } }, "roots": [ "/src" ], "transform": { "^.+\\.ts?$": "ts-jest" }, "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$" } }