-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@uscreen.de/fastify-app",
"version": "2.1.0",
"description": "Opinionated combination of base packages to bootstrap a fastify app",
"main": "index.js",
"type": "module",
"homepage": "https://github.com/uscreen/fastify-app",
"repository": {
"type": "git",
"url": "git+https://github.com/uscreen/fastify-app.git"
},
"author": "Marcus Spiegel <[email protected]>",
"license": "MIT",
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "eslint '**/*.js' --fix",
"test": "node --test --test-reporter spec",
"test:cov": "c8 --reporter=html --reporter=text node --test",
"test:ci": "node --test",
"prepare": "husky"
},
"devDependencies": {
"@uscreen.de/eslint-config-prettystandard-node": "^0.2.12",
"c8": "^10.1.2",
"desm": "^1.3.1",
"husky": "^9.1.6",
"json-stringify-pretty-compact": "^4.0.0",
"lint-staged": "^15.2.10",
"should": "^13.2.3"
},
"dependencies": {
"@fastify/autoload": "^6.0.2",
"@fastify/helmet": "^12.0.1",
"@fastify/sensible": "^6.0.1",
"@fastify/swagger": "^9.1.0",
"@fastify/swagger-ui": "^5.0.1",
"@fastify/under-pressure": "^9.0.1",
"assign-deep": "^1.0.1",
"env-schema": "^6.0.0",
"fastify": "^5.0.0",
"fastify-plugin": "^5.0.1",
"hyperid": "^3.3.0",
"pino-pretty": "^11.2.2",
"read-package-up": "^11.0.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}