forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.61 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@rushstack/rush-serve-plugin",
"version": "5.142.0",
"description": "A Rush plugin that hooks into a rush action and serves output folders from all projects in the repository.",
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "rush-plugins/rush-serve-plugin"
},
"main": "lib-commonjs/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "heft test --clean",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"dependencies": {
"@rushstack/debug-certificate-manager": "workspace:*",
"@rushstack/heft-config-file": "workspace:*",
"@rushstack/node-core-library": "workspace:*",
"@rushstack/rig-package": "workspace:*",
"@rushstack/rush-sdk": "workspace:*",
"@rushstack/ts-command-line": "workspace:*",
"compression": "~1.7.4",
"cors": "~2.8.5",
"express": "4.20.0",
"http2-express-bridge": "~1.0.7",
"ws": "~8.14.1"
},
"devDependencies": {
"@rushstack/heft": "workspace:*",
"@rushstack/terminal": "workspace:*",
"local-node-rig": "workspace:*",
"@types/compression": "~1.7.2",
"@types/cors": "~2.8.12",
"@types/express": "4.17.21",
"@types/ws": "8.5.5"
},
"exports": {
".": {
"require": "./lib/index.js",
"types": "./dist/rush-serve-plugin.d.ts"
},
"./api": {
"types": "./lib/api.types.d.ts"
}
},
"typesVersions": {
"*": {
".": [
"dist/rush-serve-plugin.d.ts"
],
"api": [
"lib/api.types.d.ts"
]
}
}
}