-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 994 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "mchat",
"version": "1.0.0",
"description": "Realtime messenger powered by socket.io",
"private": true,
"scripts": {
"dev": "pnpm run -r dev",
"build": "pnpm run -r build",
"lint": "pnpm run -r lint",
"prepare": "husky install",
"commitlint": "commitlint --edit",
"docker:up": "docker compose -f docker-compose.dev.yml up --build -d",
"docker:db:migrate": "docker exec -it mchat-app pnpm migrate:run",
"docker:db:seed": "docker exec -it mchat-app pnpm seed",
"docker:down": "docker compose -f docker-compose.dev.yml down",
"e2e:test": "pnpm --filter e2e test"
},
"keywords": [
"chat",
"realtime",
"socket.io",
"react",
"node.js",
"react-query"
],
"author": "Aseer KT",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"husky": "^8.0.3",
"typescript": "^5.5.4"
},
"workspaces": [
"client",
"server"
]
}