-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 933 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 933 Bytes
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
{
"name": "developer-chat-app",
"version": "0.1.0",
"private": true,
"description": "Developer-focused communication tool monorepo",
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "concurrently -n backend,frontend -c green,cyan \"npm run -w @devchat/backend dev\" \"npm run -w @devchat/frontend dev\"",
"dev:backend": "npm run -w @devchat/backend dev",
"dev:frontend": "npm run -w @devchat/frontend dev",
"lint": "npm run --workspaces --if-present lint",
"test": "npm run --workspaces --if-present test",
"build": "npm run --workspaces --if-present build"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"concurrently": "^9.2.1",
"eslint": "^9.34.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20"
}
}