-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 745 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 745 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
{
"name": "collabdocs",
"version": "2.0.0",
"private": true,
"workspaces": ["client", "server"],
"scripts": {
"dev": "concurrently \"npm run dev --prefix server\" \"npm run dev --prefix client\"",
"build": "npm run build --workspace=server && npm run build --workspace=client",
"lint": "npm run lint --workspace=client && npm run lint --workspace=server",
"type-check": "npm run type-check --workspace=client && npm run type-check --workspace=server"
},
"devDependencies": {
"concurrently": "^8.2.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": ["eslint --fix", "prettier --write"]
}
}