forked from TNG/virtual-office
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 868 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
{
"name": "virtual-office",
"version": "0.1.0",
"engines": {
"node": "16.x",
"npm": "8.x"
},
"devDependencies": {
"@testing-library/cypress": "8.0.3",
"cypress": "7.7.0",
"husky": "7.0.4",
"prettier": "2.0.5",
"typescript": "4.7.4"
},
"scripts": {
"format": "prettier --write \"{client,server}/**/*.{ts,tsx,html,scss,js,md,json}\"",
"lint": "prettier --check \"{client,server}/**/*.{ts,tsx,html,scss,js,md,json}\"",
"installAll": "npm install",
"buildAll": "npm run build --workspaces",
"testAll": "npm test --workspaces",
"cypress": "TZ=Etc/UTC cypress run",
"cypress:dev": "TZ=Etc/UTC CYPRESS_BASE_URL=http://localhost:8080 cypress open",
"start": "npm start --workspace=server",
"start:e2e": "npm run start:e2e --workspace=server"
},
"workspaces": [
"client",
"server"
]
}