forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 955 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
31
{
"name": "@rushstack/rush-serve-plugin",
"version": "0.0.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/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "heft test --clean",
"_phase:build": "heft build --clean",
"_phase:test": "heft test --no-build"
},
"dependencies": {
"@rushstack/node-core-library": "workspace:*",
"@rushstack/rush-sdk": "workspace:*",
"express": "4.17.1"
},
"devDependencies": {
"@rushstack/eslint-config": "workspace:*",
"@rushstack/heft": "workspace:*",
"@rushstack/heft-node-rig": "workspace:*",
"@types/express": "4.17.13",
"@types/heft-jest": "1.0.1",
"@types/node": "12.20.24"
}
}