forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 784 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 784 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": "heft-fastify-test",
"description": "This project tests Heft support for the Fastify framework for Node.js services",
"version": "1.0.0",
"private": true,
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"build": "heft build --clean",
"start": "heft build-watch --serve",
"serve": "node lib/start.js",
"_phase:build": "heft run --only build -- --clean"
},
"devDependencies": {
"local-eslint-config": "workspace:*",
"@rushstack/heft": "workspace:*",
"@rushstack/heft-lint-plugin": "workspace:*",
"@rushstack/heft-typescript-plugin": "workspace:*",
"@types/heft-jest": "1.0.1",
"@types/node": "18.17.15",
"eslint": "~8.7.0",
"typescript": "~5.0.4"
},
"dependencies": {
"fastify": "~3.16.1"
}
}