-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.28 KB
/
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
31
32
33
34
35
36
37
38
39
{
"name": "@fakehost/workspace",
"version": "0.0.0",
"description": "Fake hosts",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"packages/devtools/*",
"packages/rest/*",
"packages/signalr/*",
"packages/utils/*"
],
"devDependencies": {
"@types/node": "^18.0.0",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"lerna": "^7.1.1",
"prettier": "^2.3.2",
"tsup": "^7.1.0",
"typescript": "^5.0.0"
},
"scripts": {
"build:libs": "lerna run build",
"build:app": "lerna run build:app",
"build": "yarn build:libs && yarn build:app",
"lint": "lerna run lint --",
"test": "lerna run test --",
"e2e": "lerna run --stream e2e --",
"start:app": "yarn --cwd packages/test-web-app start",
"start:fakeapp": "yarn --cwd packages/test-web-app start:fakeapp",
"start:bundledapp": "yarn --cwd packages/test-web-app start:bundledapp",
"start:fakes": "concurrently \"yarn start:fake:rest\" \"yarn start:fake:signalr\"",
"start:fake:rest": "cross-env REST_PORT=5005 yarn --cwd packages/rest/test-fake-svc start:fake",
"start:fake:signalr": "cross-env SIGNALR_PORT=5002 yarn --cwd packages/signalr/signalr-test-fake-svc start:fake",
"typecheck": "lerna run typecheck --"
}
}