This repository has been archived by the owner on Aug 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.79 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "fastify-service-skeleton",
"version": "2.0.0",
"description": "Create fastify based microservices even faster.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "rm -rf dist/ && npm run compile:build && npm run lint",
"compile": "tsc -p tsconfig.json",
"compile:build": "tsc -p tsconfig.build.json",
"format:check": "prettier --check 'src/**/*.ts'",
"format:write": "prettier --write 'src/**/*.ts'",
"format:staged": "pretty-quick --staged",
"lint": "eslint src --ext .js,.ts",
"prepare": "husky install",
"prepublishOnly": "npm test && npm run build",
"start": "ts-node example/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r ts-node/register node_modules/.bin/jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micro-tools/fastify-service-skeleton.git"
},
"keywords": [
"fastify",
"microservice"
],
"author": "Juri Wiens <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/micro-tools/fastify-service-skeleton/issues"
},
"homepage": "https://github.com/micro-tools/fastify-service-skeleton#readme",
"dependencies": {
"ajv": "^8.5.0",
"ajv-formats": "^2.1.0",
"fastify": "^3.14.0",
"fastify-plugin": "^3.0.0",
"fastify-sensible": "^3.1.1",
"got": "^11.8.3",
"hyperid": "^3.0.0",
"lodash.merge": "^4.6.2",
"pino": "^7.6.3",
"pino-pretty": "^7.0.1",
"prom-client": "^14.0.0",
"remeda": "^0.0.32",
"under-pressure": "^5.6.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/flush-write-stream": "^1.0.0",
"@types/jest": "^27.0.2",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^17.0.8",
"@types/pino": "^7.0.5",
"@types/split2": "^3.2.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.1.0",
"flush-write-stream": "^2.0.0",
"husky": "^7.0.0",
"jest": "^27.2.5",
"nock": "^13.0.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rxjs": "^7.1.0",
"split2": "^4.1.0",
"strict-event-emitter-types": "^2.0.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.0.0",
"typescript": "^4.2.3",
"utility-types": "^3.10.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}