generated from 47ng/typescript-library-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
117 lines (117 loc) · 2.67 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "fastify-micro",
"version": "0.0.0-semantically-released",
"description": "Opinionated Node.js microservices framework built on fastify",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "François Best",
"email": "[email protected]",
"url": "https://francoisbest.com"
},
"repository": {
"type": "git",
"url": "https://github.com/47ng/fastify-micro"
},
"keywords": [
"microservice-framework",
"fastify"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest --coverage --runInBand",
"test:watch": "jest --watch --runInBand",
"build:clean": "rm -rf ./dist",
"build:ts": "tsc",
"build": "run-s build:clean build:ts",
"ci": "run-s build test",
"test:integration": "NODE_ENV=production ts-node ./tests/integration/main.ts",
"prepare": "husky install"
},
"dependencies": {
"@47ng/check-env": "^2.1.0",
"@sentry/node": "^6.18.1",
"fastify": "^3.27.2",
"fastify-autoload": "^3.11.0",
"fastify-plugin": "^3.0.1",
"fastify-sensible": "^3.1.2",
"get-port": "^6.1.2",
"nanoid": "^3.3.1",
"redact-env": "^0.3.1",
"sonic-boom": "^2.6.0",
"under-pressure": "^5.8.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^16.2.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/pino": "7.0.5",
"@types/sonic-boom": "^2.1.1",
"axios": "^0.26.0",
"commitlint": "^16.2.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.13.9",
"sentry-testkit": "^3.3.7",
"ts-jest": "^27.1.3",
"ts-node": "^10.6.0",
"typescript": "^4.6.2",
"wait-for-expect": "^3.0.2"
},
"jest": {
"verbose": true,
"preset": "ts-jest/presets/js-with-ts",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/tests/integration/"
]
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"clean",
"doc",
"feat",
"fix",
"perf",
"ref",
"revert",
"style",
"test"
]
],
"subject-case": [
0,
"always",
"sentence-case"
],
"body-leading-blank": [
2,
"always",
true
]
}
}
}