cudr_slate-collaborative/packages/backend/package.json

50 lines
1.3 KiB
JSON
Raw Normal View History

2019-10-05 08:44:49 +00:00
{
"name": "@slate-collaborative/backend",
2019-10-28 06:28:37 +00:00
"version": "0.0.3",
2019-10-05 08:44:49 +00:00
"files": [
"lib"
],
"main": "lib/index.js",
2019-10-28 06:28:37 +00:00
"types": "lib/model.d.ts",
2019-10-05 08:44:49 +00:00
"description": "slate-collaborative bridge",
2019-10-05 09:07:11 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/cudr/slate-collaborative.git"
},
"publishConfig": {
"access": "public"
},
2019-10-05 08:44:49 +00:00
"author": "cudr",
"license": "MIT",
"scripts": {
"prepublishOnly": "yarn run build",
"type-check": "tsc --noEmit",
"build": "yarn run build:types && yarn run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"watch": "yarn build:js -w"
},
"dependencies": {
2019-10-28 06:28:37 +00:00
"@babel/runtime": "^7.6.3",
"@slate-collaborative/bridge": "^0.0.3",
2019-10-05 08:44:49 +00:00
"automerge": "^0.12.1",
"lodash": "^4.17.15",
2019-10-28 06:28:37 +00:00
"slate": "^0.47.8",
2019-10-05 08:44:49 +00:00
"socket.io": "^2.2.0",
"typescript": "^3.6.3"
},
"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-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.6.0",
"@types/socket.io": "^2.1.2"
2019-10-05 09:07:11 +00:00
},
"directories": {
"lib": "lib"
2019-10-05 08:44:49 +00:00
}
}