-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 759 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 759 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
31
32
{
"private": true,
"packageManager": "yarn@1.22.22",
"workspaces": [
"client",
"server"
],
"resolutions": {
"cheerio": "1.0.0-rc.12"
},
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test:ci",
"test:ci": "turbo run test:ci",
"start:client": "yarn workspace letscube-client start",
"start:server": "yarn workspace letscube-server start:server",
"start:socket": "yarn workspace letscube-server start:socket",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"devDependencies": {
"cypress": "^15.18.1",
"husky": "4.2.5",
"turbo": "^2.10.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
}
}