-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.59 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.59 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
{
"name": "@uscreen.de/fastify-app",
"type": "module",
"version": "3.3.0",
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748",
"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",
"files": [
"config.js"
],
"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": "^3.3.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"
}
}