-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 760 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 760 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
{
"name": "collabcode",
"private": true,
"type": "module",
"workspaces": [
"apps/*"
],
"scripts": {
"dev:server": "npm run dev -w apps/server",
"dev:client": "npm run dev -w apps/client",
"test": "npm run test --workspaces --if-present",
"lint": "eslint apps",
"format": "prettier --write apps"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/async-lock": "^1.4.2",
"@types/ws": "^8.18.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"prettier": "^3.9.0",
"shadcn": "^4.6.0",
"typescript-eslint": "^8.62.0"
}
}