-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.64 KB
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
{
"name": "@uscreen.de/fastify-app",
"type": "module",
"version": "3.3.1",
"packageManager": "pnpm@10.33.4+sha512.1c67b3b359b2d408119ba1ed289f34b8fc3c6873412bec6fd264fbdc82489e510fcbecb9ce9d22dae7f3b76269d8441046014bdca53b9979cd7a561ad631b800",
"description": "Opinionated combination of base packages to bootstrap a fastify app",
"author": "Marcus Spiegel <spiegel@uscreen.de>",
"license": "MIT",
"homepage": "https://github.com/uscreen/fastify-app",
"repository": {
"type": "git",
"url": "git+https://github.com/uscreen/fastify-app.git"
},
"main": "index.js",
"types": "index.d.ts",
"files": [
"config.js",
"index.d.ts"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "node --test --test-reporter spec",
"test:cov": "c8 --reporter=html --reporter=text node --test",
"test:ci": "c8 --reporter=lcov --reporter=text node --test",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@fastify/autoload": "^6.3.1",
"@fastify/helmet": "^13.0.2",
"@fastify/one-line-logger": "^2.1.0",
"@fastify/sensible": "^6.0.4",
"@fastify/swagger": "^9.7.0",
"@fastify/under-pressure": "^9.0.3",
"@scalar/fastify-api-reference": "^1.49.3",
"assign-deep": "^1.0.1",
"env-schema": "^7.0.0",
"fastify": "^5.8.2",
"fastify-plugin": "^5.1.0",
"hyperid": "^4.0.0",
"read-package-up": "^12.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^7.7.3",
"c8": "^11.0.0",
"desm": "^1.3.1",
"eslint": "^9.39.4",
"eslint-plugin-format": "^1.5.0",
"json-stringify-pretty-compact": "^4.0.0",
"should": "^13.2.3"
}
}