- Chore: ran `make npm@update` to update deps and lockfile - Chat: new plugin: Socket.ts that allow the use of socket.io with fastify (fastify-socket.io is not updated) - Chat: Put everything from `src/socket.ts` that needed to be saved into `src/app.ts`
42 lines
932 B
JSON
42 lines
932 B
JSON
{
|
|
"name": "workspace",
|
|
"type": "module",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"./@shared",
|
|
"./icons",
|
|
"./user",
|
|
"./auth",
|
|
"./chat"
|
|
],
|
|
"lint-staged": {
|
|
"*": [
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"build": "npm run build --workspaces --if-present",
|
|
"eslint": "eslint",
|
|
"install-all": "npm install",
|
|
"dev:prepare": "husky"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.1",
|
|
"@openapitools/openapi-generator-cli": "^2.25.2",
|
|
"@typescript-eslint/eslint-plugin": "^8.47.0",
|
|
"@typescript-eslint/parser": "^8.47.0",
|
|
"eslint": "^9.39.1",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^16.2.7",
|
|
"openapi-generator-cli": "^1.0.0",
|
|
"openapi-typescript": "^7.10.1",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.47.0",
|
|
"vite": "^7.2.4"
|
|
},
|
|
"dependencies": {
|
|
"@redocly/cli": "^2.11.1",
|
|
"bindings": "^1.5.0"
|
|
}
|
|
}
|