UNPKG

chamesu

Version:

This package contains all packages of the chat application.

54 lines (53 loc) 1.69 kB
{ "name": "chamesu", "author": { "name": "Peter Placzek", "email": "contact@tada5hi.net", "url": "https://tada5hi.net" }, "license": "MIT", "version": "1.0.0", "description": "This package contains all packages of the chat application.", "workspaces": [ "./packages/backend/*", "./packages/common/*", "./packages/frontend/*" ], "keywords": [ "chat", "module", "typescript", "template", "chat-template" ], "repository": { "type": "git", "url": "git+https://github.com/Tada5hi/chamesu.git" }, "bugs": { "url": "https://github.com/Tada5hi/chamesu/issues" }, "homepage": "https://github.com/Tada5hi/chamesu#readme", "devDependencies": { "@tada5hi/eslint-config-vue-typescript": "^0.0.25", "@types/node": "^17.0.21", "eslint": "^8.10.0", "lerna": "^4.0.0", "rimraf": "^3.0.2", "typescript": "4.6.2" }, "scripts": { "bootstrap": "lerna bootstrap", "clean": "lerna run clean", "build": "lerna run build", "test": "lerna run test", "pub": "npm run build && lerna publish", "lint": "eslint --ext .ts,.vue,.js ./packages/", "lint:fix": "npm run lint -- --fix", "ui": "npm run dev --workspace=packages/frontend/ui", "api": "npm run dev --workspace=packages/backend/api", "realtime": "npm run dev --workspace=packages/backend/realtime", "result": "npm run dev --workspace=packages/backend/result", "common": "npm run build-watch --workspace=packages/shared/common" } }