-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 944 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 944 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
{
"name": "@msinternal/dev-server",
"version": "0.0.0-0",
"description": "Development server for Web Chat",
"main": "./src/index.js",
"author": "Microsoft Corporation",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "npm run --if-present build:pre && npm run build:run && npm run --if-present build:post",
"build:pre": "npm run build:pre:local-dependencies",
"build:pre:local-dependencies": "../../../scripts/npm/build-local-dependencies.sh",
"build:run": "echo This project does not need to be built.",
"bump": "vg bump prod && vg bump dev && (npm audit fix || exit 0)",
"postversion": "../../../scripts/npm/postversion.sh",
"preversion": "../../../scripts/npm/preversion.sh",
"start": "node ."
},
"pinDependencies": {},
"localDependencies": {},
"devDependencies": {
"compression": "^1.8.1",
"express": "^5.2.1",
"serve-handler": "^6.1.7"
}
}